import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; import { bl_fi_mst_item_line_RowClass, FinancialItemContainerModel } from 'blg-akaun-ts-lib'; import { Observable, ReplaySubject } from 'rxjs'; export declare class UOMComponent implements OnInit, OnDestroy { private cd; uom: FormControl; fiitem$: Observable; uomChange: EventEmitter; selectedUomModel: EventEmitter; unitPrice: EventEmitter; private subs; uomListings: any[]; uomfilterControl: FormControl; filteredUOM$: ReplaySubject; uomList: bl_fi_mst_item_line_RowClass[]; selectedUOM: any; selectedPrice: any; baseUOM: any; fiItem: any; constructor(cd: ChangeDetectorRef); ngOnInit(): void; filterUOM(search: string): void; onUOMSelected(e: any): void; ngOnDestroy(): void; }