/** * returns true if the provided values are shallow equal * @example * shallowEqual({ a: 1 }, { a: 1 }) * // returns true * shallowEqual({ a: { b: 1 } }, { a: { b: 1 } }) * // returns false */ export default function shallowEqual(objA: any, objB: any): boolean; //# sourceMappingURL=shallowEqual.d.ts.map