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