/** * This hook automatically memoizes an object using its value's equality check as a discrimination criterion. * PLEASE NOTE!!! The equality check of a JS object is an extremely complex issue. * Therefore, this hook should be used with extreme caution, only when strictly necessary and only if you fully master the topic above and its implications in the conditional rendering logic of React */ declare function useMemoizedObject(object: T): T; export { useMemoizedObject }; //# sourceMappingURL=useMemoizedObject.d.ts.map