import * as React from 'react'; import { IconType } from '../utils'; type TagSeverityType = 'success' | 'info' | 'warning' | 'danger'; export interface TagProps extends Omit, HTMLSpanElement>, 'ref'> { value?: React.ReactNode; severity?: TagSeverityType; rounded?: boolean; icon?: IconType; children?: React.ReactNode; } export declare class Tag extends React.Component { public getElement(): HTMLSpanElement; }