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