import { I18n, I18nConfig, Locale } from '@i18n-chain/core'; import { ComponentClass, FC } from 'react'; import { InjectedI18nProps } from './hoc'; declare type I18nInstance = I18n & { use: () => I18n['chain']; hoc:

>>(WrappedComponent: ComponentClass

) => FC>; }; export declare function createI18n>(config: I18nConfig): I18nInstance; export {};