/** * Memoization that works with deep equal for objects we don't know the exact structure of */ export declare function useDeepEqualMemo(value: T): T | undefined;