import { VariantProps } from 'class-variance-authority'; declare const skeletonVariants: (props?: ({ variant?: "circle" | "rect" | "text" | null | undefined; defaultVariants?: "variant" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; type SkeletonProps = React.ComponentProps<'div'> & VariantProps; declare function Skeleton({ className, variant, ...props }: SkeletonProps): import("react").JSX.Element; export { Skeleton, type SkeletonProps }; //# sourceMappingURL=index.d.ts.map