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