import { SafeAny } from '@ngx-simple/core/types'; /** * @description 判断两个值是否相等 * 支持 undefined null number string NaN Object Map Set Array 不区分 +0 or -0 * @param value 要比较的值 * @param other 要比较的另一个值 * @returns 两个值相等为true,否则为false * @example * * const object = { 'a': 1 }; * var other = { 'a': 1 }; * * isEqual(object, other); * // => true * * object === other; * // => false */ export declare function isEqual(value: SafeAny, other: SafeAny): boolean;