import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { SubQueryService, ApiVisa, InventoryItemContainerModel, InventoryItemService } from 'blg-akaun-ts-lib'; import { Observable, ReplaySubject, Subject } from 'rxjs'; export declare class SelectInvItemDropDownComponent implements OnInit, OnDestroy { private invService; private sqService; inventory: FormControl; apiVisa: ApiVisa; multiple: boolean; inventoryChange: EventEmitter; serverSideFiltering: FormControl; serverSideSearching: boolean; filteredOptions$: ReplaySubject; inventoryList: InventoryItemContainerModel[]; selectedInventory: InventoryItemContainerModel; protected _onDestroy: Subject; constructor(invService: InventoryItemService, sqService: SubQueryService); ngOnInit(): void; searchBranch(searchText: string): Observable; onSelect(branchGuid: string): void; ngOnDestroy(): void; }