import type { ScanReport } from "../types.js"; export type ReportFormat = "terminal" | "markdown" | "json" | "html"; export declare function renderReport(report: ScanReport, format: ReportFormat): string;