import { z } from "zod"; import * as GitInterfaces from "azure-devops-node-api/interfaces/GitInterfaces"; declare const STATUS_MAP: Record; export declare const addPullRequestCommentTool: { name: string; description: string; parameters: { organizationUrl: z.ZodString; project: z.ZodString; repositoryName: z.ZodString; pullRequestId: z.ZodNumber; content: z.ZodString; status: z.ZodDefault>; filePath: z.ZodOptional; rightStartLine: z.ZodOptional; rightStartColumn: z.ZodOptional; rightEndLine: z.ZodOptional; rightEndColumn: z.ZodOptional; }; handler: ({ organizationUrl, project, repositoryName, pullRequestId, content, status, filePath, rightStartLine, rightStartColumn, rightEndLine, rightEndColumn, }: { organizationUrl: string; project: string; repositoryName: string; pullRequestId: number; content: string; status: keyof typeof STATUS_MAP; filePath?: string; rightStartLine?: number; rightStartColumn?: number; rightEndLine?: number; rightEndColumn?: number; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export {};