/** * GitGraph Renderer * * Renders a GitGraphAST back to Mermaid gitGraph syntax. */ import type { GitGraphAST } from '../types/gitgraph.js'; import type { RenderOptions } from '../types/render-options.js'; /** * Renders a GitGraphAST to Mermaid syntax */ export declare function renderGitGraph(ast: GitGraphAST, options?: RenderOptions): string; //# sourceMappingURL=gitgraph-renderer.d.ts.map