import { OnInit } from '@angular/core'; import { ColDef, ColumnApi, GridApi } from '@ag-grid-community/core'; import { VentureWorklistService } from './services/venture-worklist.service'; import { VentureWorkListItem } from './models/venture-worklist-item'; import { Observable } from 'rxjs'; import { AgGridAngular } from '@ag-grid-community/angular'; import { TabService } from '@prutech/components'; import * as i0 from "@angular/core"; export declare class VentureWorklistComponent implements OnInit { private ventureListService; private tabService; viewModel: ColDef[]; gridApi: GridApi; gridColumnApi: ColumnApi; defaultColDef: ColDef; paginationPageSize: number; headerHeight: number; domLayout: string; showHeader: boolean; btnAdd: boolean; loading: Observable; ventureList: Observable; constructor(ventureListService: VentureWorklistService, tabService: TabService); ngOnInit(): void; onFirstDataRendered(params: AgGridAngular): void; onGridReady(params: AgGridAngular): void; onPageSizeChanged(selectedValue: AgGridAngular): void; refreshGrid(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }