import { z } from "zod";
export declare const getPRTestImpactTool: {
    name: string;
    description: string;
    parameters: {
        organizationUrl: z.ZodString;
        project: z.ZodString;
        repositoryName: z.ZodString;
        pullRequestId: z.ZodNumber;
        includeTestFiles: z.ZodDefault<z.ZodBoolean>;
        analysisDepth: z.ZodDefault<z.ZodEnum<["basic", "standard", "comprehensive"]>>;
    };
    handler: ({ organizationUrl, project, repositoryName, pullRequestId, includeTestFiles, analysisDepth }: {
        organizationUrl: string;
        project: string;
        repositoryName: string;
        pullRequestId: number;
        includeTestFiles: boolean;
        analysisDepth: "basic" | "standard" | "comprehensive";
    }) => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
    }>;
};
