import * as React from 'react'; import { TagProps as AntTagProps, TagType as AntTagType } from 'antd'; import './Tag.less'; export interface TagProps extends AntTagProps, Partial { className?: string; color?: 'error' | 'success' | 'info' | 'warning' | 'default'; } export declare const Tag: React.FC>;