/** * Component for render every info text * * @author Brauer Ilya * @date 2021-05-13 */ import * as React from 'react'; import { ALIGN } from '../../constants'; interface IProps { text: string; textAlign: ALIGN; } export declare class InfoText extends React.PureComponent { static defaultProps: { textAlign: ALIGN; }; render(): JSX.Element; } export {};