import { HttpService, InternalAuthGatewayOptions, InternalAuthLoginResult, InternalServiceAuthResult, OperationResult } from "../interfaces"; export declare class InternalAuthGateway { protected httpService: HttpService; protected options: InternalAuthGatewayOptions; constructor(httpService: HttpService, options: InternalAuthGatewayOptions); login(): Promise>; verify(accessToken: string): Promise>; }