import { type TagProps as AntdTagProps } from 'antd'; export type TagType = 'success' | 'error' | 'warning' | 'processing' | 'pending' | 'stop'; export interface TagProps extends AntdTagProps { /** * 预设类型,自带 icon */ type?: TagType; /** * 大小 */ size?: 'small' | 'middle' | 'large'; } export declare const Tag: React.FC;