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 WHTComponent implements OnInit, OnDestroy { private taxService; wht: FormControl; whtChange: EventEmitter; whtContainer: EventEmitter; private subs; private apiVisa; filterControl: FormControl; filteredOptions$: ReplaySubject; whtList: TaxCodeContainerModel[]; constructor(taxService: TaxCodeCfgService); ngOnInit(): void; filterWHT(search: string): void; onSelectionChange(e: string): void; ngOnDestroy(): void; }