import { PureComponent } from 'react'; import { IProps } from '../../libs/interfaces'; import { TFuncClick } from '../../libs/types'; interface IIconProps extends IProps { value: string; size?: string; onClick?: Function; } declare class Icon extends PureComponent { onClick: TFuncClick; render(): JSX.Element; } export { Icon, IIconProps };