/** * Linear-flow (2–7 stage pipeline) renderer. * * Layout (matches lumen-diagram/templates/linear-flow.html convention): * - container aspect 16:10 (wide) * - stages distributed evenly across [10%, 90%], all at y=50% * - implicit chain edges (0→1, 1→2, …) unless caller provides edges * * Common semantic: "data" (purple) for payload flows; "control" (cyan) for * routing / invocation. RAG recipe in ai-patterns.md uses .data + .async. */ import type { LinearFlowContent } from "./schemas.js"; export interface LinearFlowRenderInput { title: string; subtitle?: string; content: LinearFlowContent; } export declare function renderLinearFlowBody({ title, content }: LinearFlowRenderInput): { bodyHtml: string; topologyCss: string; }; //# sourceMappingURL=linear-flow.d.ts.map