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