import { EnvironmentType, EnvironmentWithConfiguration } from "../../interfaces/environment"; export declare function getEnvironmentWithConfiguration(environmentType: EnvironmentType, environmentName?: string | undefined): EnvironmentWithConfiguration; export declare function environmentsAreTheSame(environment1: EnvironmentWithConfiguration, environment2: EnvironmentWithConfiguration): boolean; export declare const environmentUsesHttps: (environment: EnvironmentWithConfiguration) => boolean; export declare const isLiveEnvironment: (environment: EnvironmentWithConfiguration) => boolean;