import type { SafeString } from '@ember/template'; import { type ReactElement } from 'react'; export declare const isSafeString: (content: unknown) => content is SafeString; /** * React intl doesn't support HTML content in the message props. It would require using a different system for our translations with tags * @deprecated This is a temporary function to translate content that is not yet translated in the new system * @param content - The rich content to render * @returns A React element with the rendered content */ export declare function mapLegacyHTMLTranslatedContent(content: unknown): unknown; export declare function LegacyHTMLTranslatedContent({ content, }: { content: SafeString; }): ReactElement; //# sourceMappingURL=safe-string-handler.d.ts.map