/** * React hook that returns the previous value * @param {any} value */ export function usePrevious(value: any, initialValue: any): any;