import { OnDestroy, OnInit } from '@angular/core'; import { SubSink } from 'subsink2'; import { Observable } from 'rxjs'; export declare class CashDocumentViewLineComponent implements OnInit, OnDestroy { cashDoc$: Observable; localState: any; protected subs: SubSink; defaultColDef: { filter: string; floatingFilterComponentParams: { suppressFilterButton: boolean; }; minWidth: number; flex: number; sortable: boolean; resizable: boolean; suppressCsvExport: boolean; floatingFilter: boolean; }; cashDoc: any; gridApi: any; rowData: []; columnsDefs: any; ccyCode: any; total: number; tax: number; constructor(); ngOnInit(): void; onGridReady(params: any): void; ngOnDestroy(): void; }