///
import * as PropTypes from 'prop-types';
interface IInnerProps {
align: string;
}
interface IRichTextProps extends IInnerProps {
markup: string;
}
declare const RichText: {
({ align, markup, ...rest }: IRichTextProps): JSX.Element;
propTypes: {
align: PropTypes.Requireable;
markup: PropTypes.Validator;
};
defaultProps: {
align: string;
};
};
export default RichText;