import type { GraphExplorer } from '../graph-explorer/explorer.js'; import type { FileNode, ModuleGraph } from '../types/module-graph.js'; import type { Export, ImportLookup, InternalImport } from './types.js'; export declare const buildImportLookup: (fileNode: FileNode) => ImportLookup; export declare const buildExportsMap: (fileNode: FileNode, filePath: string, graph: ModuleGraph, entryPaths: Set, explorer: GraphExplorer, importLookup: ImportLookup) => Map; export declare const buildInternalImports: (fileNode: FileNode, explorer: GraphExplorer, importLookup: ImportLookup) => InternalImport[];