/*! * Check if two objects or arrays are equal * (c) 2021 Chris Ferdinandi, MIT License, https://gomakethings.com * @param {*} obj1 The first item * @param {*} obj2 The second item * @return {Boolean} Returns true if they're equal in value */ declare function isEqual(obj1: any, obj2: any): boolean; export default isEqual;