import React, { forwardRef } from 'react'; import { default as MaterialUIGrid, GridProps } from '@material-ui/core/Grid'; type GridRef = HTMLElementTagNameMap[keyof HTMLElementTagNameMap]; const Grid = forwardRef(function Grid(props, ref) { return ; }); export default Grid;