import type React from 'react'; export type RefCallback = (elem: T) => void; export type GetRef = RefCallback | React.MutableRefObject; export declare function handleGetRef(getRef: GetRef | undefined, ref: T): void;