import { EventEmitter, OnInit } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { FormBuilder, FormControl } from '@angular/forms'; import { TeamService } from '../team.service'; import { Department } from '../models/department.model'; import * as i0 from "@angular/core"; export declare class DepartmentFormComponent implements OnInit { private _router; private _TeamService; private fb; private _ActivatedRoute; department: Department; isEdit: boolean; isInDialog: boolean; saveWasClicked: EventEmitter; cancelWasClicked: EventEmitter; formTitle: string; departmentId: number; constructor(_router: Router, _TeamService: TeamService, fb: FormBuilder, _ActivatedRoute: ActivatedRoute); ngOnInit(): void; getFormTitle(): void; populateEditValues(): void; departmentForm: import("@angular/forms").FormGroup<{ name: FormControl; description: FormControl; }>; onClickSave(): void; onClickCancel(): void; getDepartment(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }