import { FunctionComponent } from 'react'; import Col from './Col'; import { GridProps } from './Grid'; import Row from './Row'; interface CompoundGridProps extends FunctionComponent { Col: typeof Col; Row: typeof Row; } declare const CompoundGrid: CompoundGridProps; export default CompoundGrid;