react-intlayer
Version:
Easily internationalize i18n your React applications with type-safe multilingual content management.
9 lines • 421 B
TypeScript
import { type FC, type PropsWithChildren, type ReactNode } from 'react';
type MarkdownContextValue = {
renderMarkdown: (markdown: string) => ReactNode;
};
type MarkdownProviderProps = PropsWithChildren<MarkdownContextValue>;
export declare const useMarkdownContext: () => MarkdownContextValue;
export declare const MarkdownProvider: FC<MarkdownProviderProps>;
export {};
//# sourceMappingURL=MarkdownProvider.d.ts.map