import { SafeExtract, Size, Variant } from '../../types'; import { IconName } from './IconName'; import * as React from 'react'; export interface IconProps { /** * Icon to be displayed. */ icon: IconName; /** * Color variant of the icon. */ variant?: 'default' | SafeExtract; /** * Size of the icon. * @default 'md' */ size?: SafeExtract; /** * Title attribute of the icon. */ title?: React.HTMLAttributes['title']; } export declare const Icon: React.ForwardRefExoticComponent>;