import { PureComponent } from 'react';
export interface IPlaceholderTextRowProps {
    className?: string;
    style?: React.CSSProperties;
    animate?: boolean;
    lineSpacing?: string | number;
}
export default class TextRow extends PureComponent<IPlaceholderTextRowProps> {
    static defaultProps: {
        lineSpacing: string;
        animate: boolean;
    };
    render(): JSX.Element;
}
