import { RegionContinentEnum } from './RegionContinentEnum';
import { RegionTypeEnum } from './RegionTypeEnum';
/** Details about an available region that can be activated on your project */
export interface AvailableRegion {
    /** Region continent code */
    continentCode: RegionContinentEnum;
    /** Location of the datacenter where the region is */
    datacenterLocation: string;
    /** Region name */
    name: string;
    /** Region type */
    type: RegionTypeEnum;
}
//# sourceMappingURL=AvailableRegion.d.ts.map