import * as React from 'react'; import { Omit } from '../_util/types'; import './style/index.less'; import { SizeType } from '../config-provider/SizeContext'; export declare type IconBaseProps = Omit, 'size'>; export interface svgProps { size?: SizeType; width?: string | number; height?: string | number; } export interface IconProps extends IconBaseProps, svgProps { type?: string; spin?: boolean; rotate?: number; color?: string; prefixCls?: string; component?: Element; } declare const Icon: React.ForwardRefExoticComponent & React.RefAttributes>; export default Icon;