import React from 'react'; import { TagPropsType } from './PropsType'; export interface TagProps extends TagPropsType { prefixCls?: string; className?: string; style?: React.CSSProperties; iconStyle?: React.CSSProperties; iconColor?: string; } export default class Tag extends React.Component { render(): JSX.Element; }