import { TdTagProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    closable: BooleanConstructor;
    content: {
        type: PropType<string | ((h: typeof import("vue").h) => import("..").SlotReturnValue)>;
    };
    default: {
        type: PropType<string | ((h: typeof import("vue").h) => import("..").SlotReturnValue)>;
    };
    disabled: BooleanConstructor;
    icon: {
        type: PropType<(h: typeof import("vue").h) => import("..").SlotReturnValue>;
        default: any;
    };
    maxWidth: {
        type: PropType<string | number>;
    };
    shape: {
        type: PropType<"square" | "round" | "mark">;
        default: "square" | "round" | "mark";
        validator(val: TdTagProps['shape']): boolean;
    };
    size: {
        type: PropType<import("..").SizeEnum>;
        default: import("..").SizeEnum;
        validator(val: TdTagProps['size']): boolean;
    };
    theme: {
        type: PropType<"default" | "success" | "primary" | "warning" | "danger">;
        default: "default" | "success" | "primary" | "warning" | "danger";
        validator(val: TdTagProps['theme']): boolean;
    };
    variant: {
        type: PropType<"outline" | "dark" | "light" | "light-outline">;
        default: "outline" | "dark" | "light" | "light-outline";
        validator(val: TdTagProps['variant']): boolean;
    };
    onClick: PropType<(context: {
        e: MouseEvent;
    }) => void>;
    onClose: PropType<(context: {
        e: MouseEvent;
    }) => void>;
};
export default _default;
