import { Observable } from "rxjs"; import { HttpClient } from "@angular/common/http"; import { FeatureHttpClient } from "../interceptors/feature-http-client"; import { UserServiceConfig } from "../../enums/token.enum"; import * as i0 from "@angular/core"; export declare class TokenService { private readonly httpClient; private defaultHttp; config: UserServiceConfig; gamificationUser: { userId: string; appId: string; accessToken: string; }; constructor(httpClient: FeatureHttpClient, defaultHttp: HttpClient, config: UserServiceConfig); getToken(): Observable; saveUserInStorage(userId: string, appId: string): void; setTokenValue(tokenName: string, tokenValue: string): void; getTokenValue(tokenKey: string): any; removeStorage(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }