import { HttpService, LanguageService } from '@ecp-caf/caf-common'; import { Observable } from 'rxjs'; import { FrameworkVariableService } from '../frmVariableService/framework-variable.service'; export interface I18nSettingEntity { i18nSetting?: any; languages?: any; currentLanCode?: string; } export declare class FrmI18nSettingService { private frmVariable; private lanService; private http; private variableKey; constructor(frmVariable: FrameworkVariableService, lanService: LanguageService, http: HttpService); getSetting(): any; getSetting$(): Observable; loadSetting$(): Observable; private deepClone; }