import { PureComponent } from 'react'; export interface IPlaceholderTextBlockProps { rows: number; lineSpacing?: string | number; widths?: number[]; dashSegments?: Array>; animate?: boolean; dashed?: boolean; style?: React.CSSProperties; className?: string; } export default class TextBlock extends PureComponent { static defaultProps: { widths: number[]; dashSegments: number[][]; animate: boolean; dashed: boolean; lineSpacing: string; }; getRowStyle: (i: any) => { width: string; }; getRows: () => any[]; render(): JSX.Element; }