/** * Flowchart Renderer * * Renders a Flowchart AST back to Mermaid syntax. */ import type { FlowchartAST } from '../types/flowchart.js'; import type { RenderOptions } from '../types/render-options.js'; /** * Render a FlowchartAST to Mermaid syntax */ export declare function renderFlowchart(ast: FlowchartAST, options?: RenderOptions): string; //# sourceMappingURL=flowchart-renderer.d.ts.map