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