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