import type { ColumnType } from './interface'; export interface ColGroupProps { colWidths: readonly number[]; columns?: readonly ColumnType[]; columCount?: number; tableWidth?: number; } declare function ColGroup({ colWidths, columns, columCount, tableWidth, }: ColGroupProps): JSX.Element; export default ColGroup;