import * as react from 'react'; interface SkeletonProps extends React.HTMLAttributes { /** Shorthand height in px (or any CSS length via className) */ h?: number | string; /** Shorthand width in px or percentage string e.g. "60%" */ w?: number | string; /** Shorthand border-radius in px */ r?: number | string; } declare function Skeleton({ className, h, w, r, style, ...props }: SkeletonProps): react.JSX.Element; export { Skeleton, type SkeletonProps };