import { OnInit } from '@angular/core'; import { Label } from '../../../../services/eleview/types/label'; import { LabelManagerService } from '../../service/label-manager.service'; import { MatDialog } from '@angular/material'; export declare class LabelForEditComponent implements OnInit { svr: LabelManagerService; private dialog; label: Label; categoryID: string; hostClass: boolean; removeConfirm: boolean; constructor(svr: LabelManagerService, dialog: MatDialog); ngOnInit(): void; edit(): void; remove(): void; }