/** True when the recent handoff history shows A↔B oscillation at/above `threshold` hops * between the same unordered pair, counting the pending from→to as the latest hop. */ export declare function isHandoffOscillating(history: Array<{ from: string; to: string; }>, pendingFrom: string, pendingTo: string, threshold: number): boolean;