import { z } from "zod"; export declare const createPullRequestTool: { name: string; description: string; parameters: { organizationUrl: z.ZodString; project: z.ZodString; repositoryName: z.ZodString; sourceBranch: z.ZodString; targetBranch: z.ZodDefault; title: z.ZodString; description: z.ZodOptional; }; handler: ({ organizationUrl, project, repositoryName, sourceBranch, targetBranch, title, description }: { organizationUrl: string; project: string; repositoryName: string; sourceBranch: string; targetBranch: string; title: string; description?: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };