import { OnInit } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { Logger } from '../../services/logger.service'; import { ApplicationKeyService, ApplicationKeyServiceFactory } from '../../services/application-key.service'; import { ApplicationKeyModel } from '../../api/app-keys'; import { DialogService } from '../../services/dialog.service'; import { MessageService } from '../../services/message.service'; import { Observable } from 'rxjs'; import { SpaControlService } from '../../services/spa-control.service'; import { TranslocoService } from '@ngneat/transloco'; import * as i0 from "@angular/core"; export declare class ApplicationKeysComponent implements OnInit { route: ActivatedRoute; private router; private logger; private dialogService; private appKeyServiceFactory; private messageService; private spaControl; private transloco; appKeyService: ApplicationKeyService; saving: boolean; columnsToDisplay: string[]; canManage$: Observable; constructor(route: ActivatedRoute, router: Router, logger: Logger, dialogService: DialogService, appKeyServiceFactory: ApplicationKeyServiceFactory, messageService: MessageService, spaControl: SpaControlService, transloco: TranslocoService); ngOnInit(): void; delete(key: ApplicationKeyModel): void; close(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }