import type { GraphNode } from '../orient.types.js'; /** * @purpose Render a flat consumer dependency graph. * @param graph Map of consumer name to GraphNode. * @returns Array of formatted output lines. */ export declare function renderGraph(graph: Map): string[]; /** * @purpose Render a recursive dependency graph as indented tree. * @param treeLines Pre-computed recursive tree lines. * @returns Array of formatted output lines. */ export declare function renderRecursiveGraph(treeLines: string[]): string[];