import { RefObject, MutableRefObject } from 'react'; type Ref = RefObject | MutableRefObject; type RefOrValue = T | Ref | null | undefined; declare function currentValue(value: RefOrValue): NonNullable | undefined; export { type RefOrValue, currentValue };