import { z } from "zod"; export declare const getPRBasicInfoTool: { name: string; description: string; parameters: { organizationUrl: z.ZodString; project: z.ZodString; repositoryName: z.ZodString; pullRequestId: z.ZodNumber; }; handler: ({ organizationUrl, project, repositoryName, pullRequestId }: { organizationUrl: string; project: string; repositoryName: string; pullRequestId: number; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; };