import { type ComponentType, type ExoticComponent } from 'react'; export type IconComponent = ExoticComponent | ComponentType; export type IconSize = 'medium' | 'small' | 'tiny'; export declare enum IconVariant { Active = "active", Default = "default" }