import { FC } from 'react'; type SkeletonVariantTypes = 'light' | 'dark'; interface SkeletonProps { /** Class name to custom styling of the component. */ className?: string; /** Width of the skeleton in px. Default is 100%. */ width?: number; /** Height of the skeleton in px. */ height?: number; /** The color for the skeleton. */ variant?: SkeletonVariantTypes; /** Controls the border-radius of the skeleton. */ borderRadius?: string; } export declare const Skeleton: FC; export {};