import { IAuthResolver } from '../../IAuthResolver'; import { IAuthResponse } from '../../IAuthResponse'; import { HostingEnvironment } from '../../HostingEnvironment'; export declare abstract class OnlineResolver implements IAuthResolver { protected _siteUrl: string; protected hostingEnvironment: HostingEnvironment; protected endpointsMappings: Map; constructor(_siteUrl: string); abstract getAuth(): Promise; protected abstract InitEndpointsMappings(): void; }