import CheckableTag from "./tag-checkable";
import React from 'react';
export interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
    prefixCls?: string;
    className?: string;
    color?: string;
    closable?: boolean;
    closeIcon?: React.ReactNode;
    visible?: boolean;
    onClose?: (e: React.MouseEvent<HTMLElement>) => void;
    style?: React.CSSProperties;
    icon?: React.ReactNode;
}
type CompoundedComponent = React.ForwardRefExoticComponent<TagProps & React.RefAttributes<HTMLElement>> & {
    CheckableTag: typeof CheckableTag;
};
declare const InternalTag: CompoundedComponent;
export default InternalTag;
