export type BaseUrlEnvironment = keyof typeof baseurl | string;
export declare const baseurl: {
    dev: string;
    dw1: string;
    dw2: string;
    dw3: string;
    dw4: string;
    qa: string;
    staging: string;
    beta: string;
    production: string;
};
export declare const translationsurl: {
    dev: string;
    staging: string;
    production: string;
};
export declare const DEFAULT_ENV = "production";
