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