import React, { forwardRef } from 'react'; import { default as MaterialUIFormHelperText, FormHelperTextProps } from '@material-ui/core/FormHelperText'; type FormHelperTextRef = HTMLButtonElement; const FormHelperText = forwardRef(function FormHelperText(props, ref) { return ; }); export default FormHelperText;