import { z } from 'zod'; import { PrTask } from '../../../domain/term/task/pr_task.js'; declare const mergeToolZodSchema: z.ZodObject<{ taskId: z.ZodString; }, "strip", z.ZodTypeAny, { taskId: string; }, { taskId: string; }>; export type MergeToolParameters = z.infer; export declare const mergeParams: { taskId: z.ZodString; }; export type MergeToolResponse = { taskId: string; previousStatus: string; currentStatus: string; task: { id: string; title: string; description: string; branch: string; worktree: string; status: string; dependencies: string[]; assignedWorktree?: string; }; mergedAt: string; }; export declare const taskToMergeResponse: (task: PrTask, previousStatus: string) => MergeToolResponse; export {}; //# sourceMappingURL=schema.d.ts.map