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