import { PureComponent } from 'react'; export interface IPlaceholderRichTextBlock { className?: string; style?: React.CSSProperties; rows?: number; shape?: string; size?: number; animate?: boolean; dashed?: boolean; widths?: number[]; dashSegments?: Array>; lineSpacing?: string | number; } export default class RichTextBlock extends PureComponent { static defaultProps: { style: {}; className: string; shape: string; animate: boolean; dashed: boolean; size: number; }; render(): JSX.Element; }