import { CSSProperties } from 'react'; export type SkeletonVariant = 'text' | 'circular' | 'rectangular' | 'rounded'; export interface SkeletonProps { variant?: SkeletonVariant; width?: number | string; height?: number | string; className?: string; style?: CSSProperties; } export declare function Skeleton({ variant, width, height, className, style, }: SkeletonProps): import("react/jsx-runtime").JSX.Element;