import type { CommandContext } from "../registry.js"; /** * `chant graph` — the Op dependency graph by default; `--stacks` renders the * cross-stack apply-ordering graph (edges, order, waves) chant computes from * cross-lexicon references; `--components` (#560) renders the same * order/waves shape for discovered `Component` declarations, from their * `dependsOn`; `--format ir|mermaid` emits the lint-gated entity-graph IR (or * a Mermaid flowchart of it) for diagrams (#493/#496). `--components` with a * `--format` projects the component DAG itself into that format (nodes = * components, wave groups, `dependsOn` edges) — the graph behold renders. */ export declare function runGraph(ctx: CommandContext): Promise; //# sourceMappingURL=graph.d.ts.map