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