/** * Hook that returns the value from the previous render. * * @param value - Value to return from the previous render. * @returns Value from the previous render. */ export declare function usePrevious(value: T): T | undefined;