import React from 'react';
declare class TextIndent extends React.Component<any, any> {
    state: {
        currentIndent: number;
    };
    UNSAFE_componentWillReceiveProps(nextProps: any): void;
    increaseIndent: () => void;
    decreaseIndent: () => void;
    render(): JSX.Element;
}
export default TextIndent;
