export type InitOptions = { out?: string; components?: string; schemas?: string; force?: boolean; dryRun?: boolean; verbose?: boolean; }; export type InitResult = { outputPath: string; code: string; wroteFile: boolean; usedShadcnDefaults: boolean; summary: string; }; export declare function runInit(options: InitOptions): Promise; //# sourceMappingURL=init.d.ts.map