import { ForwardRefExoticComponent } from 'react';
import { ColProps, TypeMark } from './types';
type ICol = ForwardRefExoticComponent<ColProps> & TypeMark;
declare const RefCol: ICol;
export default RefCol;
