/** * Compares two values deeply for equality. * Works for primatives, arrays and objects. * Not verified for other types. * @param a - The first value to compare. * @param b - The second value to compare. * @returns True if the values are deeply equal, false otherwise. */ export declare function deepEqual(a: any, b: any): boolean;