import { PureComponent } from 'react'; export interface IPlaceholderTextRowDashedProps { className?: string; style?: React.CSSProperties; lineSpacing?: number | string; animate?: boolean; segments?: Array; } export interface IPlaceholderTextRowDashedState { segments: number[]; } export default class TextRowDashed extends PureComponent { static defaultProps: { lineSpacing: string; animate: boolean; }; constructor(props: any); render(): JSX.Element; }