///
declare const PRESET_COLOR: {
red: boolean;
green: boolean;
yellow: boolean;
blue: boolean;
grey: boolean;
};
export interface ITagProps extends React.HTMLAttributes {
theme?: keyof typeof PRESET_COLOR;
outline?: boolean;
rounded?: boolean;
closable?: boolean;
onClose?: React.MouseEventHandler;
style?: React.CSSProperties;
closeButtonStyle?: React.CSSProperties;
visible?: boolean;
size?: 'small' | 'medium' | 'large';
}
export declare const Tag: import("react").ForwardRefExoticComponent>;
export default Tag;