import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { CurrencyService, CurrencyContainerModel, ApiVisa } from 'blg-akaun-ts-lib'; import { ReplaySubject } from 'rxjs'; export declare class SelectCurrencyDropDownComponent implements OnInit, OnDestroy { private currencyService; currency: FormControl; apiVisa: ApiVisa; currencyChange: EventEmitter; selectionChange: EventEmitter; private subs; filterControl: FormControl; filteredOptions$: ReplaySubject; currencyList: CurrencyContainerModel[]; constructor(currencyService: CurrencyService); ngOnInit(): void; filterCurrency(search: string): void; ngOnDestroy(): void; }