import type { PatchBuilderV2 } from "@git-stunts/git-warp"; import type { PathOps } from "../ports/paths.js"; type TSNode = import("web-tree-sitter").SyntaxNode; /** * Resolve import/export statements and emit cross-file reference edges. * * Call this inside a patch callback after emitAstNodes has run for a file. * Handles: named imports, aliased imports, default imports, namespace imports, * re-exports, and dynamic imports. */ export declare function resolveImportEdges(patch: PatchBuilderV2, filePath: string, root: TSNode, pathOps: PathOps, knownFiles: ReadonlySet): void; export {}; //# sourceMappingURL=ast-import-resolver.d.ts.map