import { Container } from 'inversify'; import type { TranslationServiceType } from '../types'; export declare const TRANSLATION_SERVICE_IDENTIFIER: unique symbol; export declare const REACT_I18_NEXT: unique symbol; type TranslatorTypes = typeof REACT_I18_NEXT; export type TranslationIocType = () => TranslationServiceType; export declare function getTranslatorContainer(translator: TranslatorTypes): Container; export {};