import type { ColumnType } from './interface'; export interface ColGroupProps { colWidths: readonly (number | string)[]; columns?: readonly ColumnType[]; columCount?: number; } declare function ColGroup({ colWidths, columns, columCount }: ColGroupProps): import("vue/jsx-runtime").JSX.Element; export default ColGroup;