import { ColProps } from 'antd';
import { FC } from 'react';
import { GRID_COL, TComponentProps } from '../../Types';
interface IChildren extends Omit<ColProps, 'children'> {
    children: TComponentProps[];
}
export interface IGridCol {
    ctype: typeof GRID_COL;
    props: IChildren;
}
declare const GridCol: FC<IGridCol>;
export default GridCol;
