/**
 * Hook to get the previous value of a given variable.
 * @param value Value to get the previous value from.
 * @returns Previous value of the given variable.
 */
export declare function usePrevious<T>(value?: T): T | undefined;
