import { OnInit } from '@angular/core'; import { GenericDocContainerModel, InventoryTransactionLineService } from 'blg-akaun-ts-lib'; import { SubSink } from 'subsink2'; import { InvViewColumnViewModelStates } from '../../../generic-doc-view-model-controller/generic-doc-inv-view-model-controller/states'; import { GridOptions } from 'ag-grid-enterprise'; import { SessionStates } from '../../../modules/session/session-controller/states'; import { Store } from '@ngrx/store'; export declare class InvTxnComponent implements OnInit { readonly viewModelStore: Store; protected readonly sessionStore: Store; protected invTxnLineService: InventoryTransactionLineService; protected subs: SubSink; private columnMoveSubject; private debounceTimeMs; gridApi: any; gridColumnApi: any; rowData: []; gridOptions: GridOptions; columnsDefs: ({ headerName: string; field: string; cellStyle: () => { 'text-align': string; }; valueFormatter?: undefined; type?: undefined; } | { headerName: string; field: string; cellStyle: () => { 'text-align': string; }; valueFormatter: (params: any) => string; type?: undefined; } | { headerName: string; field: string; type: string; valueFormatter: (params: any) => any; cellStyle?: undefined; })[]; constructor(viewModelStore: Store, sessionStore: Store, invTxnLineService: InventoryTransactionLineService); ngOnInit(): void; onGridReady(params: any): void; createData(genericDoc: GenericDocContainerModel): void; ngOnDestroy(): void; saveColumnStateToLocal(columnApi: any): void; ngAfterViewInit(): void; saveColumnStateToBackend(columnApi: any): void; ngAfterViewChecked(): void; }