import type { DependencyGraph } from '../types/analysis.js'; export declare class DependencyGraphBuilder { private nodes; private visited; private projectRoot; constructor(projectRoot: string); build(entryFiles: string[]): DependencyGraph; getImporters(file: string): string[]; getImportees(file: string): string[]; } //# sourceMappingURL=dependency.d.ts.map