import * as React from 'react'; import { StandardProps, PropTypes } from '..'; export interface IconProps extends StandardProps, IconClassKey> { color?: PropTypes.Color | 'action' | 'disabled' | 'error'; } export type IconClassKey = | 'root' | 'colorSecondary' | 'colorAction' | 'colorDisabled' | 'colorError' | 'colorPrimary'; declare const Icon: React.ComponentType; export default Icon;