import { OnInit, OnDestroy } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { Logger } from '../../services/logger.service'; import { DialogService } from '../../services/dialog.service'; import { ApplicationService } from '../../services/application.service'; import { MessageService } from '../../services/message.service'; import { Observable } from 'rxjs'; import { SpaControlService } from '../../services/spa-control.service'; import { ApplicationModel } from '../../api/applications'; import { TranslocoService } from '@ngneat/transloco'; import { AgentService } from '../../services/agent.service'; import * as i0 from "@angular/core"; export declare class ApplicationDetailComponent implements OnInit, OnDestroy { route: ActivatedRoute; private router; private logger; private appService; private dialogService; private messageService; private spaControl; private transloco; private agentService; private $toUnsubscribe; loading: boolean; saving: boolean; model: ApplicationModel; canManage$: Observable; canViewEvents$: Observable; canViewActions$: Observable; deletionRequested: boolean; constructor(route: ActivatedRoute, router: Router, logger: Logger, appService: ApplicationService, dialogService: DialogService, messageService: MessageService, spaControl: SpaControlService, transloco: TranslocoService, agentService: AgentService); ngOnInit(): void; isRootSubscription(sub: string): boolean; load(): void; delete(): void; close(): void; lock(): Promise; unlock(): Promise; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }