import type { StaticCodeAnalysisIssue } from "./common-types.js"; declare class SonarClient { private readonly sonarAuthHeader; private readonly sonarApiUrl; constructor(sonarApiProto: string, sonarApiHost: string, sonarApiPort: number, sonarAuthHeader: string); hasServerStartedOrThrow(): Promise; isServerReadyOrThrow(): Promise; private fetchStatus; hasTaskSucceeded(taskId: string): Promise; fetchIssues(taskId: string, severities: string): Promise; } export { SonarClient }; //# sourceMappingURL=sonar-client.d.ts.map