import { z } from 'zod'; declare const progressToolZodSchema: z.ZodObject<{ taskId: z.ZodString; criteriaUpdates: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { taskId: string; criteriaUpdates: { id: string; completed: boolean; }[]; }, { taskId: string; criteriaUpdates: { id: string; completed: boolean; }[]; }>; export type ProgressToolParameters = z.infer; export declare const progressParams: { taskId: z.ZodString; criteriaUpdates: z.ZodArray, "many">; }; export type ProgressToolResponse = { nextAction: string; task: { id: string; title: string; status: string; acceptanceCriteria: Array<{ id: string; scenario: string; isCompleted: boolean; }>; progress: { completed: number; total: number; percentage: number; }; }; }; export {}; //# sourceMappingURL=schema.d.ts.map