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