/// import React from 'react'; import TagProps from './PropsType'; export default class Tag extends React.Component { static defaultProps: { prefixCls: string; disabled: boolean; selected: boolean; closable: boolean; small: boolean; onChange(): void; onClose(): void; afterClose(): void; }; constructor(props: any); componentWillReceiveProps(nextProps: any): void; onClick: () => void; onTagClose: () => void; render(): JSX.Element | null; }