/** * On each render returns the previous value of the given variable/constant. */ declare const usePreviousValue: (value?: TValue | undefined) => TValue | undefined; export default usePreviousValue;