/// import CellGroup from './group'; import { CellProps } from './type'; interface CellInterface { (props: CellProps): JSX.Element; Group: typeof CellGroup; } declare const Cell: CellInterface; export default Cell;