import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from "@angular/core"; import { FormControl } from "@angular/forms"; import { bl_fi_mst_item_line_RowClass } from "blg-akaun-ts-lib"; import { ReplaySubject } from "rxjs"; export declare class EinvoiceUOMComponent implements OnInit, OnDestroy { private cd; uom: FormControl; uomChange: EventEmitter; selectedEInvoiceUomModel: EventEmitter; unitPrice: EventEmitter; viewModelStore: any; ColumnViewActions: any; ColumnViewSelectors: any; 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; }