/** * Returns the previous value. * * @param value Value from which to get the previous value from. * @returns The previous value. */ export declare function usePrevious(value: T): T | undefined;