import { z } from 'zod'; import { PrTask } from '../../../domain/term/task/pr_task.js'; declare const reviewToolZodSchema: z.ZodObject<{ taskId: z.ZodString; targetStatus: z.ZodDefault>; }, "strip", z.ZodTypeAny, { taskId: string; targetStatus: "ToBeRefined" | "Refined" | "Reviewed"; }, { taskId: string; targetStatus?: "ToBeRefined" | "Refined" | "Reviewed" | undefined; }>; export type ReviewToolParameters = z.infer; export declare const reviewParams: { taskId: z.ZodString; targetStatus: z.ZodDefault>; }; export type ReviewToolResponse = { taskId: string; previousStatus: string; currentStatus: string; task: { id: string; title: string; description: string; branch: string; worktree: string; status: string; dependencies: string[]; assignedWorktree?: string; }; }; export declare const taskToReviewResponse: (task: PrTask, previousStatus: string) => ReviewToolResponse; export {}; //# sourceMappingURL=schema.d.ts.map