import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; import { TypographySemanticType } from '../Typography'; export interface SkeletonProps extends Omit, 'children'> { /** * Whether the skeleton should be circular. */ circle?: boolean; /** * Height of the skeleton. * @default 100% */ height?: number | string; /** * Typography variant for strip skeleton height calculation. * Only effective when circle and height are not set. */ variant?: TypographySemanticType; /** * Width of the skeleton. * @default 100% */ width?: number | string; } /** * The react component for `mezzanine` Skeleton. */ declare const Skeleton: import("react").ForwardRefExoticComponent>; export default Skeleton;