import { IAppKeys, II18nBuilder } from '../types'; export declare class I18nBuilder implements II18nBuilder { private resources; private resourcesRaw; getScopedKey(appId: string, key: string): string; withLanguage(appId: string, language: string, data: Json): this; withKeysByLanguage(appId: string, keysByLanguage: Json): this; build(): IAppKeys; get raw(): Json; }