import { InternalColumnProps } from './interface';
declare type ColGroupType = {
    prefixCls?: string;
    columns?: InternalColumnProps[];
};
declare function ColGroup(props: ColGroupType): JSX.Element;
export default ColGroup;
