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