/** * Memo on a single object, returned object will only change if any of the properties are not equal (===). * * Does not compare order of properties. */ export declare function useMemoObject(currentObject: O): O;