import { OnDestroy } from '@angular/core'; import { InviteModel, InviteData, InviteAuthorizationData, CreateInviteResponse } from '../api/invites'; import { Observable } from 'rxjs'; import { Logger } from './logger.service'; import { HttpClient } from '@angular/common/http'; import { SpaControlService } from './spa-control.service'; import { ObservableSearchService, SearchService } from '@lacuna/material'; import * as i0 from "@angular/core"; export declare class InviteService implements OnDestroy, ObservableSearchService, SearchService { private logger; private http; private spaControl; private $subscriptions; private changedSubject; private cache; changed: Observable; constructor(logger: Logger, http: HttpClient, spaControl: SpaControlService); list(): Observable; get(id: string): Observable; getClaimCode(id: string): Observable; create(sub: string, emailAddress: string, inviteData: InviteAuthorizationData): Observable; resend(id: string): Observable; update(id: string, data: InviteData): Observable; delete(id: string): Observable; notifyChanged(id?: string): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }