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