import type React from 'react'; /** * 骨架屏组件属性 */ export interface SkeletonProps { /** * 宽度 */ width?: number | string; /** * 高度 */ height?: number | string; /** * 骨架屏形状 */ variant?: 'circular' | 'rounded' | 'square' | string; /** * 骨架屏显示时的动画 */ animation?: boolean; /** * 自定义样式名称 */ className?: string; /** * 子元素 */ children?: React.ReactNode; } /** * 骨架屏组件 * * 在数据完整加载之前将您的内容显示为一个占位的预览 * * @param props */ export default function Skeleton(props: SkeletonProps): JSX.Element;