/** * System-architecture renderer — full-system diagram with ≥15 components. * * Nodes grouped into labeled zones, laid out in a grid. */ import type { SystemArchitectureContent } from "./schemas.js"; export interface SystemArchitectureRenderInput { title: string; subtitle?: string; content: SystemArchitectureContent; } export declare function renderSystemArchitectureBody({ title, content }: SystemArchitectureRenderInput): { bodyHtml: string; topologyCss: string; }; //# sourceMappingURL=system-architecture.d.ts.map