/** * Radial-ring renderer — peer cluster, no center. * * Nodes are evenly distributed around a circle. Edges are drawn as * straight SVG lines between node positions. */ import type { RadialRingContent } from "./schemas.js"; export interface RadialRingRenderInput { title: string; subtitle?: string; content: RadialRingContent; } export declare function renderRadialRingBody({ title, content }: RadialRingRenderInput): { bodyHtml: string; topologyCss: string; }; //# sourceMappingURL=radial-ring.d.ts.map