import { CacheDescriptorInternal, TranslationsFlat, TreeTranslationsData } from '../../types'; export declare const flattenTranslationsToMap: (data: TreeTranslationsData) => Map; export declare const flattenTranslations: (data: TreeTranslationsData) => TranslationsFlat; export declare const decodeCacheKey: (key: string) => CacheDescriptorInternal; export declare const encodeCacheKey: ({ language, namespace, }: CacheDescriptorInternal) => string;