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