/** * The `usePrevious` hook gives you access to the value of a state of the previous * render cycle. * @public */ export declare function usePrevious(value: T): T | undefined;