/** * Pie renderer — composition / proportion. * * SVG pie chart with labeled slices. */ import type { PieContent } from "./schemas.js"; export interface PieRenderInput { title: string; subtitle?: string; content: PieContent; } export declare function renderPieBody({ title, content }: PieRenderInput): { bodyHtml: string; topologyCss: string; }; //# sourceMappingURL=pie.d.ts.map