import { SVGAttributes, CSSProperties } from 'react'; export interface IconProps extends SVGAttributes { style?: CSSProperties; className?: string; size?: 'small' | 'medium' | 'large' | string | number; strokeWidth?: number; strokeColor?: string | string[]; fillColor?: string | string[]; } export interface Attrs { [key: string]: any; } export interface IconElement { tag: string; attrs: Attrs; children?: IconElement[]; } export interface IconFulfilledProps extends IconProps { icon: IconElement; id: string; } export declare const IconBase: import("react").ForwardRefExoticComponent>;