import React from 'react'; import { ExternalStyles } from '../../styles'; import { Omit } from '../../util'; import { IconImage } from '../Icon'; export type TagType = 'normal' | 'danger' | 'info' | 'success' | 'alert'; export interface TagProps extends Omit, 'style'> { type?: TagType; style?: ExternalStyles; icon?: IconImage; height?: String; removable?: boolean; onRemove?(): void; } export declare function Tag(props: TagProps): JSX.Element; export declare namespace Tag { var defaultProps: Partial; }