import { IconProp } from '@fortawesome/fontawesome-svg-core'; import { Sizes } from '../../styles'; import * as React from 'react'; interface HoverIcon { color: string; } interface Props { name: IconProp; style?: React.CSSProperties; color: string; type: 'solid' | 'regular' | 'brands'; size: Sizes; hoverStyles?: HoverIcon; } declare const Icon: { (props: Props): JSX.Element; defaultProps: { type: string; size: string; color: string; }; }; export default Icon;