/** * knowledge-visualizer — 知识图谱交互式可视化 HTML 生成 * * 数据源:KnowledgeGraph + DecayReport + ContextMarkdown * 渲染:vis-network(CDN)+ SpecCore 统一 UI 风格 */ import { KnowledgeGraph } from './knowledge-graph'; import { DecayReport } from './decay-detector'; export interface KnowledgeVisualizationData { graph: KnowledgeGraph; decay?: DecayReport; contextMarkdown?: string; projectName?: string; iterationName?: string; generatedAt?: string; } /** 生成完整的交互式 HTML 页面 */ export declare function buildKnowledgeHtml(data: KnowledgeVisualizationData): string; //# sourceMappingURL=knowledge-visualizer.d.ts.map