/** * SonarQube Exporter * * Exports findings to SonarQube Generic Issue Import Format. * * @module exporters/sonarqube */ import type { Certification } from "../certification/types.js"; import type { ExportOptions, ExportResult, Exporter } from "./types.js"; /** * Export certification to SonarQube format */ export declare function exportToSonarQube(certification: Certification, options?: ExportOptions): Promise; /** * SonarQube exporter instance */ export declare const sonarqubeExporter: Exporter; //# sourceMappingURL=sonarqube.d.ts.map