/** * Specifies where the hub is stored. Possible values are: * - ``US`` - Data center for the US region. * - ``EMEA`` - Data center for the European Union, Middle East, and Africa regions. * - ``APAC`` - Data center for the Australia region. **@deprecated Use `AUS` instead.** * - ``AUS`` - Data center for the Australia region. * - ``CAN`` - Data center for the Canada region. * - ``DEU`` - Data center for the Germany region. * - ``IND`` - Data center for the India region. * - ``JPN`` - Data center for the Japan region. * - ``GBR`` - Data center for the United Kingdom region. * @export * @enum {string} */ export declare const Region: { readonly Us: "US"; readonly Emea: "EMEA"; /** @deprecated Use `AUS` instead. */ readonly Apac: "APAC"; readonly Aus: "AUS"; readonly Can: "CAN"; readonly Deu: "DEU"; readonly Ind: "IND"; readonly Jpn: "JPN"; readonly Gbr: "GBR"; }; export type Region = typeof Region[keyof typeof Region];