import { z } from "zod"; export declare const initOptionsSchema: z.ZodObject<{ cwd: z.ZodString; name: z.ZodOptional; stack: z.ZodOptional; description: z.ZodOptional; home: z.ZodOptional; directivesPath: z.ZodOptional; }, z.core.$strip>; export type InitOptions = z.infer; export interface InitResult { created: string[]; updated: string[]; skipped: string[]; warnings: string[]; } export declare function initProject(input: InitOptions): Promise; //# sourceMappingURL=init-project.d.ts.map