import { PropType } from "vue"; export declare const SSkeletonItemProps: { /** * @description 骨架屏子项的类型 */ variant: { type: PropType<"image" | "triangle" | "rectangle">; default: string; }; /** * @description 是否是圆形 */ circle: BooleanConstructor; /** * @description 是否是圆角 */ round: BooleanConstructor; };