import * as React from 'react'; import { GridProps } from '@material-ui/core'; declare type IconWrapperProps = { IconComponent?: any; iconClassName?: string; disabled?: boolean; } & GridProps; declare const IconWrapper: React.FC; export default IconWrapper;