import { HttpService } from '@nestjs/axios'; import { JunoTokenService } from './../token/juno.token.service'; export declare class JunoClientService { private httpService; junoTokenService: JunoTokenService; created: boolean; constructor(httpService: HttpService, junoTokenService: JunoTokenService); initInterceptor(): void; createRequest(request: any): Promise; get http(): HttpService; }