import * as React from 'react'; export interface SkeletonProps { /** * The width of the skeleton. */ width?: string | number; /** * The height of the skeleton. */ height?: string | number; /** * Additional CSS class names. */ className?: string; } export declare function Skeleton({ width, height, className, ...props }: SkeletonProps & React.HTMLAttributes): import("react/jsx-runtime").JSX.Element;