/** * Interactive line chart renderer using Chart.js (CDN). * Returns chart HTML + CSS for the deterministic chart shell. */ import type { InteractiveLineContent } from "./schemas.js"; export interface InteractiveChartResult { chartHtml: string; chartCss: string; legendHtml?: string; scripts: string[]; } export declare function renderInteractiveLineBody({ content, }: { content: InteractiveLineContent; }): InteractiveChartResult; //# sourceMappingURL=interactive-line.d.ts.map