import { I18nJson } from 'lib/interfaces/i18n-json.interface'; /** * Merges two i18nJSON files. The resulting file will have all * the master translation replaced by the slave translations that may * exists */ export declare function mergeI18nJson(master: I18nJson, slave: I18nJson): I18nJson;