/** * Returns the previous value of the provided value. */ declare function usePrevious(value: T): T; export default usePrevious;