/** * Exporters Module * * Exports findings to various security tool formats. * * @module exporters */ export type { ExportFormat, ExportOptions, ExportResult, Exporter, SonarQubeReport, SonarQubeIssue, SnykReport, SnykVulnerability, CheckmarxReport, CheckmarxResult, } from "./types.js"; export { exportToSonarQube, sonarqubeExporter, } from "./sonarqube.js"; export { exportToSnyk, snykExporter, } from "./snyk.js"; export { exportToCheckmarx, checkmarxExporter, } from "./checkmarx.js"; import type { Certification } from "../certification/types.js"; import type { ExportFormat, ExportOptions, ExportResult } from "./types.js"; /** * Export certification to specified format */ export declare function exportCertification(certification: Certification, format: ExportFormat, options?: ExportOptions): Promise; /** * Get all supported export formats */ export declare function getSupportedFormats(): ExportFormat[]; //# sourceMappingURL=index.d.ts.map