//#region src/Slots/utils/propsDiffer.d.ts /** * Returns `true` if the two objects are different in any of the following ways: * - different number of own enumerable keys * - different set of key names * - different values for the same key (shallow comparison using !==) * * Returns `false` if they have exactly the same keys and the same values. * * @param a - first object * @param b - second object * @returns `true` if they are different, `false` if they are equivalent */ declare function propsDiffer(a: unknown, b: unknown): boolean; //#endregion export { propsDiffer }; //# sourceMappingURL=propsDiffer.d.ts.map