import * as React from 'react';
import TagProps from './TagPropsType';
export default class Tag extends React.Component<TagProps, any> {
    static defaultProps: {
        prefixCls: string;
        disabled: boolean;
        selected: boolean;
        onChange(): void;
    };
    constructor(props: any);
    componentWillReceiveProps(nextProps: any): void;
    onClick: () => void;
    render(): JSX.Element;
}
