import { MutableRefObject, RefObject } from 'react'; export declare type ReactRef = MutableRefObject | RefObject; export declare type ElementOrRef = T | ReactRef | null; export declare function resolveElement(value: ElementOrRef): T | null;