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