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