/** * Block Diagram Renderer * * Renders BlockAST back to Mermaid block-beta diagram syntax. */ import type { BlockAST } from '../types/block.js'; import type { RenderOptions } from '../types/render-options.js'; /** * Renders a BlockAST to Mermaid block-beta diagram syntax * * Block diagrams require edges to be rendered inline with nodes (as node chains), * not as separate statements. The parser only recognizes edges when they're part * of node chains like `a --> b --> c`. */ export declare function renderBlock(ast: BlockAST, options?: RenderOptions): string; //# sourceMappingURL=block-renderer.d.ts.map