import { FC, PropsWithChildren } from 'react'; interface ITagProps { /** * css class */ className?: string; /** * 类型 * @default primary */ type?: 'primary' | 'info' | 'danger' | 'warning'; /** * 圆角样式 * @default false */ round?: boolean; /** * 自定义标签颜色 */ color?: string; /** * 自定义文字颜色 */ textColor?: string; /** * 尺寸 * @default normal */ size?: 'normal' | 'small' | 'large'; } declare const Tag: FC>; export default Tag;