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