/** * Node matching algorithm for comparing two analyses. */ import type { AnalyzableNode } from '../types'; interface MatchResult { matched: Array<{ old: AnalyzableNode; new: AnalyzableNode; }>; removed: AnalyzableNode[]; added: AnalyzableNode[]; } /** * Matches nodes between two analyses by name/path. */ export declare function matchNodes(oldNodes: Map, newNodes: Map): MatchResult; export {}; //# sourceMappingURL=matching.d.ts.map