import React from 'react'; import { GridProps, GridItemProps } from './PropsType'; type InternalProps = { parent?: GridProps; index?: number; }; declare const GridItem: React.FC; export default GridItem;