import { ChangeDetectorRef, OnInit } from '@angular/core'; import { ColumnApi, GridApi } from '@ag-grid-community/core'; import { ActivatedRoute, Router } from '@angular/router'; import { AgGridAngular } from '@ag-grid-community/angular'; import { Observable } from 'rxjs'; import { AbstractComponent, TabService } from '@prutech/components'; import { MatDialog } from '@angular/material/dialog'; import { ColDef } from '@ag-grid-enterprise/all-modules'; import { EmploymentDeclarationListService } from '../../services/employment-declaration-list.service'; import { EmploymentDeclarationListItem } from '../../models/employment-declaration-list-item.model'; import { EmploymentDeclarationPayload } from '../../models/employment-declaration-payload'; import * as i0 from "@angular/core"; export declare class EmploymentDeclarationSearchTableComponent extends AbstractComponent implements OnInit { private tabService; private router; private cdRef; private dialog; edListService: EmploymentDeclarationListService; private route; readonly viewModel: ColDef[]; readonly headerHeight: number; readonly domLayout: string; canInitiateED: Observable; gridApi: GridApi; gridColumnApi: ColumnApi; clientName: string; title: string; ventureEdList: EmploymentDeclarationListItem[]; caseId: number; employmentDeclarationId: string; loadEdListPayload: EmploymentDeclarationPayload; initiateEdPayload: EmploymentDeclarationPayload; constructor(tabService: TabService, router: Router, cdRef: ChangeDetectorRef, dialog: MatDialog, edListService: EmploymentDeclarationListService, route: ActivatedRoute); ngOnInit(): void; onFirstDataRendered(params: AgGridAngular): void; onGridReady(params: AgGridAngular): void; onPageSizeChanged(selectedValue: AgGridAngular): void; redirectToAdd(): void; refreshGrid(): void; afterOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }