import type { CSSProperties } from 'react'; import { Block } from './Block'; import { Blocks } from './Blocks'; import { BoxWithIcon } from './BoxWithIcon'; import { Donut } from './Donut'; import { Line } from './Line'; import { List } from './List'; import { Slider } from './Slider'; import { Square } from './Square'; declare const variants: { readonly block: typeof Block; readonly blocks: typeof Blocks; readonly box: typeof BoxWithIcon; readonly donut: typeof Donut; readonly line: typeof Line; readonly list: typeof List; readonly slider: typeof Slider; readonly square: typeof Square; }; type SkeletonVariant = keyof typeof variants; type SkeletonProps = { variant?: SkeletonVariant; length?: number; col?: number; className?: string; 'aria-label'?: string; 'data-testid'?: string; style?: CSSProperties; }; export declare function Skeleton({ variant, length, col, className, 'aria-label': ariaLabel, 'data-testid': dataTestId, style, }: SkeletonProps): import("react").JSX.Element; export declare namespace Skeleton { var displayName: string; } export declare const skeletonTypes: SkeletonVariant[]; export {}; //# sourceMappingURL=index.d.ts.map