import { HttpClient } from '@angular/common/http'; import { ApplicationKeyModel, CreateApplicationApiKeyRequest, CreateApplicationApiKeyResponse } from '../api/app-keys'; import { Observable } from 'rxjs'; import { SearchService, ObservableSearchService } from '@lacuna/material'; import * as i0 from "@angular/core"; export declare class ApplicationKeyServiceFactory { private http; private services; constructor(http: HttpClient); getService(appId: string): ApplicationKeyService; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export declare class ApplicationKeyService implements SearchService, ObservableSearchService { private appId; private http; private changedSubject; changed: Observable; constructor(appId: string, http: HttpClient); list(): Observable; createApiKey(request: CreateApplicationApiKeyRequest): Observable; delete(id: string): Observable; }