import React from 'react'; interface SkeletonProps extends React.HTMLAttributes { width?: string; height?: string; variant?: 'text' | 'rect' | 'circle'; } export declare const Skeleton: React.FC; export {};