import { Environment } from './environment';
export declare enum PlasoContentType {
    NHOMEWORK = "nhomework",
    LIVECLASS = "liveclass",
    MAIN = "main",
    RESOURCES = "resources"
}
export declare const getUrlConfigMap: (mode: Environment, platform: string) => {
    nhomework: {
        baseUrl: string;
    };
    liveclass: {
        baseUrl: string;
    };
    main: {
        baseUrl: string;
    };
    resources: {
        baseUrl: string;
    };
};
