import * as React from 'react'; export interface IconProps { type?: string; color?: string; size?: string; style?: React.CSSProperties; } declare const Icon: (props: IconProps) => JSX.Element; export default Icon;