/** * Pie Chart Renderer * * Renders a PieAST back to Mermaid pie chart syntax. */ import type { PieAST } from '../types/pie.js'; import type { RenderOptions } from '../types/render-options.js'; /** * Renders a PieAST to Mermaid syntax */ export declare function renderPie(ast: PieAST, options?: RenderOptions): string; //# sourceMappingURL=pie-renderer.d.ts.map