import { JunoOptions } from '..'; import { HttpService } from '@nestjs/axios'; export declare class JunoTokenService { httpService: HttpService; private options; response: any; constructor(httpService: HttpService, options: JunoOptions); get authorizationHash(): string; get privateToken(): string; get baseUrl(): string; get isAuthorized(): boolean; credentials(): Promise; authorize(): any; }