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