import React from 'react'; import { ViewStyle, StyleProp, DimensionValue } from 'react-native'; import { SpacingProps } from '../../../theme'; export interface SkeletonProps extends SpacingProps { variant?: 'rect' | 'circle' | 'line'; width?: DimensionValue; height?: number; animated?: boolean; style?: StyleProp; testID?: string; } /** * Skeleton 骨架屏组件 * - 支持形态:rect | circle | line * - 新增:支持 SpacingProps(margin/padding 间距) * - 支持动画:animated 开启呼吸动画 */ declare const Skeleton: React.FC; export default Skeleton; //# sourceMappingURL=Skeleton.d.ts.map