I18nProvider.d.ts 279 B

1234567
  1. import React from 'react';
  2. import { I18nProviderProps } from '.';
  3. export declare const InternalContext: React.Context<{
  4. ns: {};
  5. config: {};
  6. }>;
  7. export default function I18nProvider({ lang: lng, namespaces, children, config: newConfig, }: I18nProviderProps): JSX.Element;