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