import type { Dictionary, PrimitiveWrapper, State, TypedArray } from './internalTypes'; /** * Whether the arrays are equal in value. */ export declare function areArraysEqual(a: any[], b: any[], state: State): boolean; /** * Whether the dates passed are equal in value. */ export declare function areDatesEqual(a: Date, b: Date): boolean; /** * Whether the `Map`s are equal in value. */ export declare function areMapsEqual(a: Map, b: Map, state: State): boolean; /** * Whether the objects are equal in value. */ export declare function areObjectsEqual(a: Dictionary, b: Dictionary, state: State): boolean; /** * Whether the objects are equal in value with strict property checking. */ export declare function areObjectsEqualStrict(a: Dictionary, b: Dictionary, state: State): boolean; /** * Whether the primitive wrappers passed are equal in value. */ export declare function arePrimitiveWrappersEqual(a: PrimitiveWrapper, b: PrimitiveWrapper): boolean; /** * Whether the regexps passed are equal in value. */ export declare function areRegExpsEqual(a: RegExp, b: RegExp): boolean; /** * Whether the `Set`s are equal in value. */ export declare function areSetsEqual(a: Set, b: Set, state: State): boolean; /** * Whether the TypedArray instances are equal in value. */ export declare function areTypedArraysEqual(a: TypedArray, b: TypedArray): boolean;