import * as React from 'react'; export declare type IRefObject = React.RefObject | RefObject | ((ref: T | null) => void); export declare type RefObject = { (component: T | null): void; current: T | null; };