import React from "react"; interface IParams { [key: string]: any; } interface IHTMLMessageProps { id: string; values?: IParams; htmlTags?: IParams; } /** * * This component ensures that HTML texts can be rendered correctly even with * "react-intl" version <= 3 (that supports FormattedHTMLMessage) * and newer version "react-inlt" (that does not support FormattedHTMLMessage) */ declare const HTMLMessage: React.FC; export default HTMLMessage;