import type { AllHTMLAttributes } from 'react'; import type { StylingBoxProps } from '../Box'; export type SkeletonProps = Omit & { variant?: 'text' | 'rect' | 'circle'; } & AllHTMLAttributes; declare const Skeleton: ({ variant, ...props }: SkeletonProps) => import("react/jsx-runtime").JSX.Element; export default Skeleton; //# sourceMappingURL=Skeleton.d.ts.map