import React, { forwardRef } from 'react'; import { default as MaterialUIList, ListProps } from '@material-ui/core/List'; type ListRef = HTMLUListElement; const List = forwardRef(function List(props, ref) { return ; }); export default List;