/** * [INPUT]: InsightsReport, locale * [OUTPUT]: Standalone HTML report * [POS]: Pure renderer, no side effects */ import type { InsightsReport } from "./types.js"; export declare function renderInsightsHtml(report: InsightsReport, locale: string): string;