import { z } from "zod"; export declare const commitChangesTool: { name: string; description: string; parameters: { repositoryPath: z.ZodString; message: z.ZodString; stageAll: z.ZodDefault; allowEmpty: z.ZodDefault; }; handler: ({ repositoryPath, message, stageAll, allowEmpty }: { repositoryPath: string; message: string; stageAll: boolean; allowEmpty: boolean; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };