import type { ExtractPropTypes } from 'vue'; export declare const tagProps: { closable: BooleanConstructor; type: { type: PropType<"" | "success" | "warning" | "info" | "danger">; default: string; }; hit: BooleanConstructor; disableTransitions: BooleanConstructor; color: { type: StringConstructor; default: string; }; size: { type: PropType<"default" | "small" | "large">; }; effect: { type: PropType<"dark" | "light" | "plain">; default: string; }; maxWidth: { type: StringConstructor; }; }; export type TagProps = ExtractPropTypes; export declare const tagEmits: { close: (evt: MouseEvent) => boolean; click: (evt: MouseEvent) => boolean; }; export type TagEmits = typeof tagEmits;