/// import GridItem from './grid-item'; import { GridProps } from './type'; interface GridInterface { (props: GridProps): JSX.Element; Item: typeof GridItem; } declare const Grid: GridInterface; export default Grid;