import { DatabaseService } from "../database/database.service"; export declare class EnvironmentService { private _databaseService; private _environmentToEndpointMappings; constructor(_databaseService: DatabaseService); /** * Get the current environment url */ getCurrentEnvironmentUrl(): Promise; /** * Gets the environment URL if you already know the environment type * @param environmentType The environment type */ private getEnvironmentUrlForEnvironmentType; }