import { PropType } from "vue"; import { ElementSizes, ElementTypes } from '../../../typings'; export declare const STagProps: { /** * @description 标签的类型 */ type: PropType; /** * @description 标签的大小 */ size: PropType; /** * @description 标签的主题 */ variant: PropType<"light" | "dark">; /** * @description 是否是圆角 */ status: PropType<"round">; /** * @description 是否可以被删除 */ closable: BooleanConstructor; }; export declare const STagEmits: { click: (event: MouseEvent) => boolean; close: (event: MouseEvent) => boolean; };