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