/** * Checks if two values are deeply equal, and logs the diff to the console * using [npm:deep-object-diff](https://www.npmjs.com/package/deep-object-diff). * * @param a - The first value to compare. * @param b - The second value to compare. */ export declare function areEqualDebug(a: any, b: any): boolean; /** * Checks if two values are not deeply equal, and logs the diff to the console * using npm:deep-object-diff. * * @param a - The first value to compare. * @param b - The second value to compare. */ export declare const areNotEqualDebug: typeof areEqualDebug;