import { default as React } from 'react'; import { Messages } from 'next-intl'; import { LeafPaths, TranslationOptions } from '@plyaz/types/translations'; interface TranslatedHtmlProps { translationKey: LeafPaths; translationOptions?: TranslationOptions; namespace?: string; className?: string; tag?: keyof React.JSX.IntrinsicElements; } /** * TranslatedHtml component renders translated content as HTML. * * This component is useful when your translation keys contain HTML markup, * such as: * - Links: "Click here for more information" * - Formatting: "This is important text" * - Mixed content: "Welcome to Our App - Learn more" * * @example * // Translation key: "welcome_message" = "Welcome to Our App" * * * @example * // With dynamic content and HTML * // Translation key: "click_here" = "Click {text}" * */ declare const TranslatedHtml: React.FC; export default TranslatedHtml; //# sourceMappingURL=TranslatedHtml.d.ts.map