/** * Output formatting for scan reports. * Supports text, JSON, markdown, SARIF 2.1.0, and GitLab Dependency * Scanning report output. */ import type { ScanReport } from "./types.js"; /** * Format a scan report for output. */ export declare function formatReport(report: ScanReport, format: "text" | "json" | "markdown" | "sarif" | "sbom" | "html" | "badge" | "gitlab"): string; //# sourceMappingURL=reporter.d.ts.map