import { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react';
import { ColumnGroupProps } from './ColumnGroup.d';
export interface IColumnGroup extends ForwardRefExoticComponent<PropsWithoutRef<ColumnGroupProps> & RefAttributes<HTMLDivElement>> {
    __PRO_TABLE_COLUMN_GROUP?: boolean;
}
declare const ColumnGroup: IColumnGroup;
export default ColumnGroup;
