/**
* Fast shallow compare for plain objects.
* Returns `true` when both objects have the same own enumerable keys and each value is equal
* according to `Object.is()`.
*/exportdefaultfunction fastObjectShallowCompare<T extendsRecord<string, any> | null>(a: T, b: T): boolean;