/** * Dependency-graph renderer — issue / dependency DAG. * * Nodes arranged in a simple grid with edges showing dependencies. */ import type { DepGraphContent } from "./schemas.js"; export interface DepGraphRenderInput { title: string; subtitle?: string; content: DepGraphContent; } export declare function renderDepGraphBody({ title, content }: DepGraphRenderInput): { bodyHtml: string; topologyCss: string; }; //# sourceMappingURL=dep-graph.d.ts.map