import { SonarQubeClient } from '../services/sonarqube-client.js'; import { GetProjectRepositoryParams } from '../types/sonarqube.js'; export declare const getProjectRepositoryTool: { readonly name: "get_project_repository"; readonly description: "Get git repository information and source code management details for a SonarQube project"; readonly inputSchema: { readonly type: "object"; readonly properties: { readonly projectKey: { readonly type: "string"; readonly description: "The SonarQube project key (required)"; }; readonly includeBranches: { readonly type: "boolean"; readonly description: "Include branch information in the response (optional, default: false)"; readonly default: false; }; }; readonly required: readonly ["projectKey"]; readonly additionalProperties: false; }; }; export declare function getProjectRepository(client: SonarQubeClient, params: GetProjectRepositoryParams): Promise<{ content: string; }>; export declare function getProjectRepositoryHandler(params: any): Promise; //# sourceMappingURL=get-project-repository.d.ts.map