import type { ImportRef } from "../types/index.js"; import type { FileStore } from "../storage/file-store.js"; import type { GraphStore } from "../storage/graph-store.js"; export declare function buildGraph(fileImports: Map, // relativePath -> imports fileStore: FileStore, graphStore: GraphStore, rootPath: string): void;