import { EventEmitter, OnInit } from "@angular/core"; import { FormControl } from "@angular/forms"; import { ApiVisa, BranchLocationLinkService, BranchService, LocationContainerModel, LocationService, SubQueryService } from "blg-akaun-ts-lib"; import { ReplaySubject, Subject } from "rxjs"; export declare class UtilLocationDropdownComponent implements OnInit { private lctnService; private sqService; private branchLocationLinkService; private branchService; location: FormControl; apiVisa: ApiVisa; required: boolean; branchSelectedGuid: string; label: string; locationGuids: any[]; locationChange: EventEmitter; locationSelected: EventEmitter; serverSideFiltering: FormControl; serverSideSearching: boolean; filteredOptions$: ReplaySubject; locationList: LocationContainerModel[]; selectedLocation: LocationContainerModel; locations: any; protected _onDestroy: Subject; unlinkedLocation: boolean; constructor(lctnService: LocationService, sqService: SubQueryService, branchLocationLinkService: BranchLocationLinkService, branchService: BranchService); ngOnInit(): void; ngOnChanges(): void; getAllLocations(): void; LocationFiltering(): void; onSelect(locationGuid: string): void; ngOnDestroy(): void; }