import type { ExtractPropTypes } from "vue"; export declare const tagProps: { type: { type: import("vue").PropType<"primary" | "success" | "warning" | "danger" | "info">; default: "primary" | "success" | "warning" | "danger" | "info"; }; color: { type: import("vue").PropType; default: string; }; show: { type: BooleanConstructor; default: true; }; plain: { type: BooleanConstructor; default: boolean; }; round: { type: BooleanConstructor; default: boolean; }; closeable: { type: BooleanConstructor; default: boolean; }; size: { type: import("vue").PropType<"large" | "normal" | "small">; default: "large" | "normal" | "small"; }; }; export declare type TagProps = ExtractPropTypes;