import { z } from 'zod'; export declare const TaskSchema: z.ZodArray>; priority: z.ZodEnum<{ high: "high"; medium: "medium"; low: "low"; }>; dependencies: z.ZodOptional>; notes: z.ZodString; }, z.core.$strip>>; export declare const QuestionSchema: z.ZodArray; options: z.ZodOptional>; context: z.ZodOptional; }, z.core.$strip>>; export declare const PlanningIterationResultSchema: z.ZodObject<{ success: z.ZodBoolean; tasks: z.ZodArray>; priority: z.ZodEnum<{ high: "high"; medium: "medium"; low: "low"; }>; dependencies: z.ZodOptional>; notes: z.ZodString; }, z.core.$strip>>; questions: z.ZodArray; options: z.ZodOptional>; context: z.ZodOptional; }, z.core.$strip>>; reasoning: z.ZodString; planComplete: z.ZodBoolean; message: z.ZodString; error: z.ZodOptional; allPreviousQuestions: z.ZodOptional>; allPreviousAnswers: z.ZodOptional>; }, z.core.$strip>; //# sourceMappingURL=schema.d.ts.map