/**
 * Hook used to "cache" the "previous" value of a prop or a computed variable.
 */
export function usePrevious(value: any): undefined;
