import { z } from "zod";
export declare const createBranchTool: {
    name: string;
    description: string;
    parameters: {
        repositoryPath: z.ZodString;
        branchName: z.ZodString;
        startPoint: z.ZodOptional<z.ZodString>;
        checkout: z.ZodDefault<z.ZodBoolean>;
    };
    handler: ({ repositoryPath, branchName, startPoint, checkout }: {
        repositoryPath: string;
        branchName: string;
        startPoint?: string;
        checkout: boolean;
    }) => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
    }>;
};
