import type { EnvironmentConfiguration, EnvironmentConfigurations, IEnvironment } from './environment.interface';
export declare const ENV: {
    STAGING_CBA: string;
    PROD_CBA: string;
    PREPROD_CBA: string;
};
export declare const WIDGET_URL: {
    env: string;
    url: string;
}[];
export declare const API_URL: {
    env: string;
    url: string;
}[];
export declare const DEFAULT_ENV = "{{default_runtime_environment}}";
export declare const DEFAULT_ALIAS: {
    CBA: string;
};
export declare class Env implements IEnvironment {
    private alias;
    private environmentConfigurations;
    private environmentId;
    constructor(configs: EnvironmentConfigurations, defaultEnv?: string);
    setEnv(environmentId: string, alias?: string): void;
    getEnv(): string;
    getConf(): EnvironmentConfiguration;
    private validateAlias;
    private validateEnvironmentId;
}
//# sourceMappingURL=environment.cba.d.ts.map