import { ReactElement, ReactNode } from 'react'; import { IconName } from './icon'; export type TagSize = 'small' | 'medium' | 'big'; export type TagTheme = 'light-medium-blue' | 'light-fushia' | 'dark-white' | 'full-electric-blue'; export interface TagProps { label?: string; children?: ReactNode; size?: TagSize; theme?: TagTheme; leftIcon?: IconName; } export declare function Tag({ label, children, size, theme, leftIcon, }: TagProps): ReactElement;