/** * Generate a self-contained HTML file with an interactive force-directed * dependency graph visualization. No external JS/CSS — only a Google * Fonts link for JetBrains Mono. */ import type { IndexFiles } from "../indexer/index-files.js"; import type { IndexGraph } from "../indexer/index-graph.js"; import { type AuditAnalysis } from "./audit-analysis.js"; export declare function generateAuditGraph(indexer: IndexFiles & IndexGraph, analysis: AuditAnalysis, projectName: string): string;