import React from 'react'; import type { CSSProperties, HTMLAttributes, Ref } from 'react'; import { type TypographyProps } from '../../Typography'; import './SkeletonTypography.css'; export declare const cnSkeletonTypography: import("@bem-react/classname").ClassNameFormatter; export type SkeletonTypographyProps = { /** Содержимое компонента */ children?: never; /** Вариант шрифта типографики */ typographyVariant?: TypographyProps['variant']; /** Количество строк */ rows?: number; /** Ширина строки */ width?: CSSProperties['width']; /** Ссылка на корневой DOM-элемент компонента */ ref?: Ref; } & HTMLAttributes; export declare const SkeletonTypography: React.ForwardRefExoticComponent & React.RefAttributes>;