/// interface IconConfig { name: string; position: string; } interface Props { name?: string; config?: IconConfig; } declare function MuiFormIcon(props: Props): JSX.Element; export default MuiFormIcon;