/** * Checkmarx Exporter * * Exports findings to Checkmarx XML format. * * @module exporters/checkmarx */ import type { Certification } from "../certification/types.js"; import type { ExportOptions, ExportResult, Exporter } from "./types.js"; /** * Export certification to Checkmarx format */ export declare function exportToCheckmarx(certification: Certification, options?: ExportOptions): Promise; /** * Checkmarx exporter instance */ export declare const checkmarxExporter: Exporter; //# sourceMappingURL=checkmarx.d.ts.map