import { z } from "zod";
export declare const gitCommandTool: {
    name: string;
    description: string;
    parameters: {
        repositoryPath: z.ZodString;
        command: z.ZodString;
        workingDirectory: z.ZodOptional<z.ZodString>;
    };
    handler: ({ repositoryPath, command, workingDirectory }: {
        repositoryPath: string;
        command: string;
        workingDirectory?: string;
    }) => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
    }>;
};
