import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { NstiStockContainerModel, NstiStockService } from 'blg-akaun-ts-lib'; import { ReplaySubject, Subject } from 'rxjs'; export declare class SelectNSTIDropDownComponent implements OnInit, OnDestroy { private nstiService; private subs; private apiVisa; nsti: FormControl; guid_fi_item_hdr: any; isTradeIn: boolean; isReturn: boolean; nstiSelected: EventEmitter; nstiChange: EventEmitter; serverSideFiltering: FormControl; serverSideSearching: boolean; filteredOptions$: ReplaySubject; nstiList: NstiStockContainerModel[]; selectedNSTI: NstiStockContainerModel; filterControl: FormControl; protected _onDestroy: Subject; constructor(nstiService: NstiStockService); ngOnInit(): void; filterNSTI(search: string): void; onSelect(guid: string): void; ngOnDestroy(): void; }