import { I18nJson } from 'lib/interfaces/i18n-json.interface';
/**
 * Transforms a nested parsed JSON to a Map
 * with keys given by path key1.key1.1...
 */
export declare function flattenI18nJSON(json: I18nJson): Map<string, string>;
