import { type Blueprint, type BlueprintModule, type BlueprintsApiConfig } from '../index.js';
/**
 * Define a Blueprint to manage Sanity resources
 * ```
 * defineBlueprint({
 *   resources: [
 *     // list of managed resources
 *   ]
 * })
 * ```
 * @param blueprintConfig The blueprint configuration
 * @returns A blueprint module
 */
export declare function defineBlueprint(blueprintConfig: Partial<Blueprint> & Partial<BlueprintsApiConfig>): BlueprintModule;
