export declare const DEFAULT_COMPARATOR: (a: unknown, b: unknown) => boolean; export type AnyObject = Record; export type EmptyObject = Record; export type PartialProp = Omit & Partial>; /** * Makes shallow comparison of two objects. */ export declare const OBJECT_COMPARATOR: (objA: Record, objB: Record) => boolean; export declare function isReadonlyArray(value: ReadonlyArray | unknown): value is ReadonlyArray;