import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { WarehouseService, WarehouseContainerModel } from 'blg-akaun-ts-lib'; import { ReplaySubject } from 'rxjs'; export declare class SelectWarehouseDropDownComponent implements OnInit, OnDestroy { private warehouseService; warehouseControl: FormControl; label: any; selectionChange: EventEmitter; private subs; private apiVisa; filterControl: FormControl; filteredOptions$: ReplaySubject; entityList: WarehouseContainerModel[]; fieldLabel: string; constructor(warehouseService: WarehouseService); ngOnInit(): void; filterWarehouse(search: string): void; ngOnDestroy(): void; }