import { SonarQubeClient } from '../services/sonarqube-client.js'; import { ProjectListResponse, ToolResponse } from '../types/sonarqube.js'; /** * List all accessible SonarQube projects */ export declare function listProjects(client: SonarQubeClient, args: unknown): Promise>; /** * Tool definition for MCP server */ export declare const listProjectsTool: { name: string; description: string; inputSchema: { type: string; properties: { organization: { type: string; description: string; }; search: { type: string; description: string; }; qualityGate: { type: string; description: string; enum: string[]; }; }; additionalProperties: boolean; }; }; //# sourceMappingURL=list-projects.d.ts.map