import * as React from 'react'; import { WithStyles } from '../withStyles'; import styles from './Icon.styles'; export declare type IconOptions = 'add' | 'alert' | 'arrowLeft' | 'checkmark' | 'chevronDown' | 'defaultContent' | 'dragVertical' | 'edit' | 'endDate' | 'facebook' | 'fullscreen' | 'fullscreenExit' | 'group' | 'horizontalScreen' | 'lock' | 'next' | 'menu' | 'pause' | 'play' | 'previous' | 'publish' | 'remove' | 'repeat' | 'time' | 'trash' | 'scheduledContent' | 'screenSettings' | 'search' | 'startDate' | 'stop' | 'verticalScreen'; interface IconProps extends WithStyles { /** Icon name */ icon: IconOptions; /** Icon title */ title?: string; /** Additional classname */ className?: string; } export declare const Icon: React.SFC; declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;