import type { Configs, IConf, 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 configs;
    private env;
    constructor(configs: Configs, defaultEnv?: string);
    setEnv(env: string, alias?: string): void;
    getEnv(): string;
    getConf(): IConf;
    private isValidMode;
}
//# sourceMappingURL=environment.cba.d.ts.map