import React from 'react';
import type { Ref, HTMLAttributes, CSSProperties, ReactNode } from 'react';
import '../Skeleton.css';
export declare const cnSkeleton: import("@bem-react/classname").ClassNameFormatter;
export type SkeletonRectangularProps = {
/** Содержимое компонента */
children?: ReactNode;
/** Дополнительные CSS-классы */
className?: string;
/** Ширина */
width?: CSSProperties['width'];
/** Высота */
height?: CSSProperties['height'];
/** Ссылка на корневой DOM-элемент компонента */
ref?: Ref;
} & HTMLAttributes;
export declare const SkeletonRectangular: React.ForwardRefExoticComponent & React.RefAttributes>;