import { FC, PropsWithChildren } from 'react'; interface ISkeletonProps { /** * css class */ className?: string; /** * 行数 * @default 3 */ rows?: number; /** * 是否显示头像占位 * @default false */ avatar?: boolean; /** * 是否显示标题占位 * @default false */ title?: boolean; /** * 是否显示为骨架屏 * @default true */ loading?: boolean; /** * 是否开启动画 * @default true */ animate?: boolean; /** * 头像风格 * @default round */ avatarShape?: 'square' | 'round'; } declare const Skeleton: FC>; export default Skeleton;