import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { ApiVisa, TaxCodeCfgService, TaxCodeContainerModel } from 'blg-akaun-ts-lib'; import { ReplaySubject } from 'rxjs'; export declare class SelectSSTDropDownComponent implements OnInit, OnDestroy { private taxService; sst: FormControl; apiVisa: ApiVisa; sstChange: EventEmitter; sstContainer: EventEmitter; private subs; filterControl: FormControl; filteredOptions$: ReplaySubject; sstList: TaxCodeContainerModel[]; constructor(taxService: TaxCodeCfgService); ngOnInit(): void; filterSST(search: string): void; onSelectionChange(e: string): void; ngOnDestroy(): void; }