import './SkeletonText.css'; import React from 'react'; import { TextPropLineHeight, TextPropSize } from '../../Text'; import { PropsWithHTMLAttributes } from '../../../utils/types/PropsWithHTMLAttributes'; import { SkeletonBrick } from '../Skeleton'; type SkeletonTextProps = PropsWithHTMLAttributes<{ rows: number; fontSize?: TextPropSize; lineHeight?: TextPropLineHeight; }, HTMLDivElement>; export declare const getRowWidth: (idx: number, total: number) => React.ComponentProps["height"]; export declare const SkeletonText: React.FC; export {};