/** * Ultra-fast deep comparison * - Supports objects/arrays. * - No Date/Map/Set support. * - Can be significantly faster than Lodash's `_.isEqual()` in most cases, * while still handling all the same edge cases. * - ~15% faster than react-fast-compare in benchmarks. */ export declare const isEqual: (a: T, b: T) => boolean; export { }