/** * Recursively compare one value to another value. Can be any type, but will * compare two objects recursively to make sure their properties are not the same. * @param a The first object to compare. * @param b The object to compare {@link a} against. */ export declare function recursiveCompare(a: any, b: any): boolean;