UNPKG

react-intlayer

Version:

Easily internationalize i18n your React applications with type-safe multilingual content management.

16 lines 570 B
import { LocalesValues } from '@intlayer/config/client'; import { KeyPath } from '@intlayer/core'; import type { FC } from 'react'; type MarkdownRendererProps = { dictionaryKey: string; keyPath: KeyPath[]; locale?: LocalesValues; children: string; }; export declare const MarkdownRenderer: FC<MarkdownRendererProps>; type MarkdownMetadataRendererProps = MarkdownRendererProps & { metadataKeyPath: KeyPath[]; }; export declare const MarkdownMetadataRenderer: FC<MarkdownMetadataRendererProps>; export {}; //# sourceMappingURL=MarkdownRenderer.d.ts.map