import React, { ReactNode } from 'react'; import { TdCellGroupProps } from './type'; import { NativeProps } from '../_util/withNativeProps'; export type CellGroupProps = TdCellGroupProps & NativeProps & { children?: ReactNode; }; declare const CellGroup: React.FC; export default CellGroup;