import { PropType } from "vue"; export declare const SIconProps: { /** * @description 图标的名称 */ target: StringConstructor; /** * @description 图标的自定义元素标签 */ tag: { type: PropType<"i" | "label">; default: "i"; }; /** * @description 当图标标签为label时, label.for */ for: StringConstructor; /** * @description 图标是否会无限旋转 */ rotating: BooleanConstructor; /** * @description 图标的颜色 */ color: StringConstructor; };