import { PropType } from "vue";
import { TagStatus } from "./types";
declare const _sfc_main: import("vue").DefineComponent<{
    /** 标签图标 */
    icon: {
        type: ObjectConstructor;
    };
    status: {
        type: PropType<TagStatus>;
        default: string;
    };
    dot: {
        type: BooleanConstructor;
        default: boolean;
    };
    closeable: {
        type: BooleanConstructor;
        default: boolean;
    };
}, {
    name: string;
    cls: import("vue").ComputedRef<string[]>;
    slots: Readonly<{
        [name: string]: import("vue").Slot<any>;
    }>;
    handleClose: () => void;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
    /** 标签图标 */
    icon: {
        type: ObjectConstructor;
    };
    status: {
        type: PropType<TagStatus>;
        default: string;
    };
    dot: {
        type: BooleanConstructor;
        default: boolean;
    };
    closeable: {
        type: BooleanConstructor;
        default: boolean;
    };
}>> & {
    onClose?: (...args: any[]) => any;
}, {
    status: TagStatus;
    closeable: boolean;
    dot: boolean;
}, {}>;
export default _sfc_main;
