export declare enum ShopeeRegion {
    GLOBAL = "GLOBAL",
    CHINA = "CHINA",
    BRAZIL = "BRAZIL",
    TEST_GLOBAL = "TEST_GLOBAL",
    TEST_CHINA = "TEST_CHINA"
}
export declare const SHOPEE_BASE_URLS: {
    readonly GLOBAL: "https://partner.shopeemobile.com/api/v2";
    readonly CHINA: "https://openplatform.shopee.cn/api/v2";
    readonly BRAZIL: "https://openplatform.shopee.com.br/api/v2";
    readonly TEST_GLOBAL: "https://openplatform.sandbox.test-stable.shopee.sg/api/v2";
    readonly TEST_CHINA: "https://openplatform.test-stable.shopee.cn/api/v2";
};
export declare const SHOPEE_AUTH_URLS: {
    GLOBAL: string;
    CHINA: string;
    BRAZIL: string;
    TEST_GLOBAL: string;
    TEST_CHINA: string;
};
