import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { GlcodeService, SubQueryService, ApiVisa, GlcodeContainerModel } from 'blg-akaun-ts-lib'; import { Observable, ReplaySubject, Subject } from 'rxjs'; export declare class ErpSelectGlcodeDropDownComponent implements OnInit, OnDestroy { private glcodeService; private subQueryService; apiVisa: ApiVisa; glcode: FormControl; coaGuid: string; label: string; glcodeSelected: EventEmitter; glcodeChange: EventEmitter; serverSideFiltering: FormControl; serverSideSearching: boolean; filteredOptions$: ReplaySubject; glcodeList: GlcodeContainerModel[]; selectedGlcode: GlcodeContainerModel; protected _onDestroy: Subject; constructor(glcodeService: GlcodeService, subQueryService: SubQueryService); ngOnInit(): void; search(searchText: string): Observable; onSelect(guid: string): void; onPatchValue(guid: string): void; ngOnDestroy(): void; }