react-intlayer
Version:
Easily internationalize i18n your React applications with type-safe multilingual content management.
19 lines (18 loc) • 719 B
TypeScript
import { HTMLComponents } from "../html/HTMLComponentTypes.js";
import { MarkdownProviderOptions } from "./MarkdownProvider.js";
import { LocalesValues } from "@intlayer/types/module_augmentation";
import { FC } from "react";
import { KeyPath } from "@intlayer/types/keyPath";
//#region src/markdown/MarkdownRendererPlugin.d.ts
type MarkdownRendererPluginProps = {
dictionaryKey: string;
keyPath: KeyPath[];
locale?: LocalesValues;
children: string;
options?: MarkdownProviderOptions;
components?: HTMLComponents<'permissive', {}>;
};
declare const MarkdownRendererPlugin: FC<MarkdownRendererPluginProps>;
//#endregion
export { MarkdownRendererPlugin };
//# sourceMappingURL=MarkdownRendererPlugin.d.ts.map