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