export default function extractMatchingPairs<T extends object>(hashMap: object, key: string, before: ArrayLike<T>, now: ArrayLike<T>): {
    oldObj: T;
    newObj: T;
};
