import type { GraphIR } from "./graph-ir.js"; /** * Render the graph IR as Graphviz DOT. Pure text — no `dot` needed to produce * it. Two consumers: render directly with `dot -Tsvg` (mingrammer-style), or * feed it to a layout engine for node positions that a custom painter draws * (the rackattack pattern; see {@link toLayout}). See issue #497 / epic #492. * * Consumes whatever IR it is given, so `--detail` (and future `--lens`) flow * through for free. */ export declare function toDot(ir: GraphIR): string; //# sourceMappingURL=graph-dot.d.ts.map