import { Graph } from "graphlib"; import type { Container } from "./Container.js"; import type { Implementation } from "./types.js"; export declare class DependencyGraph { private container; private readonly graph; constructor(container: Container); buildGraph(rootImplementation: Implementation): Graph; private addDependencies; private getNodeId; }