type TData = Record; /** * Used to store a stable object, which returns a new object only if one of the values has changed */ export declare function stable(isEqual?: (a: T, b: T) => boolean): any; export {};