import { FC, HTMLAttributes } from 'react';
import { IconStyledProps } from './styled';
export interface IconProps extends IconStyledProps, HTMLAttributes {
name: string;
size?: number;
color?: string;
iconClassType?: 'fill' | 'outlined' | 'round';
}
export declare const Icon: FC;