import React, { FC } from 'react'; import { box } from '../../utility/box'; import { IconType } from '../IconProvider/IconType'; export type PropsType = typeof box.props & { color?: string; size: IconSize; icon: IconType; title?: string; 'data-testid'?: string; }; export type IconSize = 'small' | 'medium' | 'large'; declare const Icon: FC>; export default Icon;