import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { PriceBookContainerModel, PriceBookService } from 'blg-akaun-ts-lib'; import { ReplaySubject } from 'rxjs'; export declare class SelectPricebookComponent implements OnInit, OnDestroy { private priceBookService; priceBook: FormControl; priceBookSelected: EventEmitter; selectedEntity: PriceBookContainerModel; private subs; private apiVisa; filterControl: FormControl; filteredOptions$: ReplaySubject; entityList: PriceBookContainerModel[]; constructor(priceBookService: PriceBookService); ngOnInit(): void; filterCurrency(search: string): void; onSelect(entityGuid: string): void; ngOnDestroy(): void; }