import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const skeletonVariants: (props?: ({ variant?: "text" | "default" | "circular" | "rectangular" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; export interface SkeletonProps extends React.HTMLAttributes, VariantProps { /** Width of skeleton */ width?: string | number; /** Height of skeleton */ height?: string | number; /** Number of lines (for text variant) */ lines?: number; } export declare const Skeleton: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Skeleton.d.ts.map