import { OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { GridApi, GridOptions, GridReadyEvent } from "ag-grid-community"; import { Employee } from '../models/employee.model'; import { TeamService } from '../team.service'; import * as i0 from "@angular/core"; export declare class EmployeesInSpecificDepartmentComponent implements OnInit { private _TeamService; private _ActivatedRoute; isEdit: boolean; departmentId: number; rowData: Employee[]; gridApi: GridApi; gridColumnApi: any; gridOptions: GridOptions; columnDefs: any; rowSelection: any; defaultColDef: any; columnTypes: any; constructor(_TeamService: TeamService, _ActivatedRoute: ActivatedRoute); ngOnInit(): void; getColumnDefs(): void; onGridReady(params: GridReadyEvent): void; getEmployees(): void; dateRenderer(params: any): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }