import { ForwardRefExoticComponent } from 'react'; import { CellProps, TypeMark } from './types'; type ICell = ForwardRefExoticComponent & TypeMark; declare const RefCell: ICell; export default RefCell;