import type { HTMLAttributes } from 'react';
import { type VariantProps } from 'class-variance-authority';
declare const skeletonVariants: (props?: ({
rounded?: "default" | "circle" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export interface SkeletonProps extends HTMLAttributes, VariantProps {
rounded?: 'default' | 'circle';
}
export declare const Skeleton: import("react").ForwardRefExoticComponent>;
export { skeletonVariants };