import React, { forwardRef } from 'react'; import { default as MaterialUIInputLabel, InputLabelProps } from '@material-ui/core/InputLabel'; type InputLabelRef = HTMLLabelElement; const InputLabel = forwardRef(function InputLabel(props, ref) { return ; }); export default InputLabel;