/** React hook which tracks the previous state of a given value. */
export declare function usePrevious<T>(value: T): T | undefined;
