import { PublicRoutingType } from './PublicRoutingType';
/** A structure describing a Region where a block can be announced to */
export interface PublicRoutingRegion {
    /** Default bandwidth limit for blocks in your vRack (in Mbps) */
    defaultBandwidthLimit: number;
    /** Type of public routing in the region. It indicates how many availability zones (one or three) can be configured to route blocks in this region. PublicRoutingPriority can be defined only on type PUBLIC-ROUTING-3-AZ. */
    publicRoutingType: PublicRoutingType;
    /** Region name */
    region: string;
}
//# sourceMappingURL=PublicRoutingRegion.d.ts.map