/** * Rename detection with confidence scoring. */ import type { AnalyzableNode } from '../types'; interface RenameCandidate { oldNode: AnalyzableNode; newNode: AnalyzableNode; confidence: number; } /** * Detects probable renames among removed and added nodes. */ export declare function detectRenames(removed: AnalyzableNode[], added: AnalyzableNode[], threshold: number): RenameCandidate[]; /** * Normalizes a signature for comparison. */ export declare function normalizeSignature(sig: string): string; export {}; //# sourceMappingURL=rename-detection.d.ts.map