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