import { EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; import { ApiVisa, FinancialItemContainerModel, FinancialItemService, SubQueryService } from 'blg-akaun-ts-lib'; import { Observable, ReplaySubject, Subject } from 'rxjs'; export declare class SelectFiItemDropDownComponent implements OnInit, OnDestroy { private fiItemService; private sqService; fi: FormControl; apiVisa: ApiVisa; txnType: string; multiple: boolean; label: string; fiChange: EventEmitter; serverSideFiltering: FormControl; serverSideSearching: boolean; filteredOptions$: ReplaySubject; inventoryList: FinancialItemContainerModel[]; selectedInventory: FinancialItemContainerModel; protected _onDestroy: Subject; constructor(fiItemService: FinancialItemService, sqService: SubQueryService); ngOnInit(): void; searchfinancialItem(searchText: string): Observable; onSelect(branchGuid: string): void; ngOnDestroy(): void; }