import React from 'react'; import './index.css'; interface SkeletonProps { count?: number; width?: number | string; height?: number | string; type?: 'circle' | 'rect'; duration?: number; baseColor?: string; highlightColor?: string; className?: string; } declare const Skeleton: React.FunctionComponent; export default Skeleton;