import { OnInit, TemplateRef, OnDestroy } from '@angular/core'; import { CoreConfigService } from '../../../services/config/core-config.service'; import { OfficeSwitcherService } from '../../../services/service/office-switcher.service'; import { AppSwitcherService } from '../../../services/service/app-switcher.service'; export declare class OfficeSelectorComponent implements OnInit, OnDestroy { private configService; private officeSwitcher; appSwitcher: AppSwitcherService; isModalVisible: boolean; tpl_content: TemplateRef; constructor(configService: CoreConfigService, officeSwitcher: OfficeSwitcherService, appSwitcher: AppSwitcherService); ngOnInit(): void; ngOnDestroy(): void; readonly canActiveSelector: any; readonly communityGroups: any[]; readonly currentOffice: any; readonly currentOfficeLevel: string; readonly currentOfficeLevelText: string; readonly isNonOfficeLevel: boolean; parseSelectorTitle(): string; parseOfficeIcon(officeNode: any): string; changeCurrentOffice(office: any): void; openAppSelector(): void; showModal(): void; closeModal(): void; }