import { z } from 'zod';
export declare const generatePlanArgsSchema: z.ZodIntersection<z.ZodObject<{
    draftPlanPath: z.ZodString;
}, z.core.$strip>, z.ZodObject<{
    llmCli: z.ZodOptional<z.ZodEnum<{
        claude: "claude";
        gemini: "gemini";
    }>>;
    outputFilePath: z.ZodString;
}, z.core.$strip>>;
export type GeneratePlanArgs = z.infer<typeof generatePlanArgsSchema>;
//# sourceMappingURL=schema.d.ts.map