import { OnInit } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; import { NzMessageService } from 'ng-zorro-antd/message'; import { NzModalRef, NzModalService } from 'ng-zorro-antd/modal'; import { PatrolGroupService } from '../../../service/patrol-group.service'; import { PatrolTemplateService } from '../../../service/patrol-template.service'; export declare class FacilityGroupInfoComponent implements OnInit { private fb; private modalRef; private modal; message: NzMessageService; private groupService; private patrolTemplateService; data: any; validateForm: FormGroup; uploading: boolean; loading: boolean; templates: any[]; constructor(fb: FormBuilder, modalRef: NzModalRef, modal: NzModalService, message: NzMessageService, groupService: PatrolGroupService, patrolTemplateService: PatrolTemplateService); ngOnInit(): void; saveEpData(): Promise; cancelData(): void; initTemplates(): void; isEmpty(obj: any): boolean; }