import React from 'react'; import type { PropsWithChildren } from 'react'; interface SkeletonProps { loading?: boolean; animation?: 'pulse' | 'wave' | false; variant?: 'circular' | 'rectangular' | 'rounded' | 'text' | undefined; [key: string]: any; } declare const Skeleton: React.FC>; export default Skeleton; //# sourceMappingURL=Skeleton.d.ts.map