1 | import type * as React from 'react';
|
2 | import type { ColumnProps } from './Column';
|
3 | import type { ColumnType } from '../interface';
|
4 | export interface ColumnGroupProps<RecordType> extends Omit<ColumnType<RecordType>, 'children'> {
|
5 | children: React.ReactElement<ColumnProps<RecordType>> | readonly React.ReactElement<ColumnProps<RecordType>>[];
|
6 | }
|
7 | /**
|
8 | * This is a syntactic sugar for `columns` prop.
|
9 | * So HOC will not work on this.
|
10 | */
|
11 | declare function ColumnGroup<RecordType>(_: ColumnGroupProps<RecordType>): any;
|
12 | export default ColumnGroup;
|