import { OnInit, EventEmitter, OnDestroy } from '@angular/core'; import { OfficeSwitcherService } from '../../../services/service/office-switcher.service'; export declare class OfficeSelectorContentComponent implements OnInit, OnDestroy { private officeSwitcher; changeOffice: EventEmitter; constructor(officeSwitcher: OfficeSwitcherService); ngOnInit(): void; ngOnDestroy(): void; readonly communityGroups: any[]; readonly currentOffice: any; readonly currentOfficeLevel: string; readonly currentOfficeLevelText: string; readonly isNonOfficeLevel: boolean; parseSelectorTitle(): string; parseOfficeIcon(officeNode: any): string; onClickOfficeNode(office: any): void; onSearchCommunity(searchText: any, parentOffice: any): void; getSearchedCommunities(parentOffice: any): any; changeCurrentOffice(office: any): void; }