/** * Performs a deep comparison between two values to determine if they are equivalent. * * Differences from lodash: * - cannot handle circular references * - does not give special treatment to arrays; their own properties are compared just like other objects. Note this means sparse arrays are not equal to their dense "equivalents". * - `isEqual(0, -0) === false` * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 10,811 bytes * - Micro-dash: 276 bytes */ export declare function isEqual(value: any, other: any): boolean;