/** * Security Operations Center (SOC) exporter (v4.6). * * Exports scan results in formats consumable by SIEM, ticketing, * and incident management systems. */ import type { ScanReport } from "./types.js"; /** * Export as JSON incident bundle for SIEM ingestion. */ export declare function exportIncidentBundle(report: ScanReport): string; /** * Export as markdown incident report for tickets/issues. */ export declare function exportIncidentMarkdown(report: ScanReport): string; /** * Export as CSV summary for executive reporting. */ export declare function exportCsvSummary(report: ScanReport): string; //# sourceMappingURL=soc-exporter.d.ts.map