import * as react from 'react'; import { CSSProperties } from 'react'; type SkeletonVariant = "text" | "rect" | "circle"; interface SkeletonProps { variant?: SkeletonVariant; width?: number | string; height?: number | string; /** For variant="text": number of stacked lines. Last line is shorter. Default 1. */ lines?: number; className?: string; style?: CSSProperties; } declare function Skeleton({ variant, width, height, lines, className, style, }: SkeletonProps): react.JSX.Element; export { Skeleton, type SkeletonProps, type SkeletonVariant };