import { IpBlock } from '../IpBlock';
/** IP block in vrack */
export interface Ip {
    /** Your gateway */
    gateway?: IpBlock;
    /** Your IP block */
    ip: IpBlock;
    /** Mode in which gateway is configured */
    publicRoutingType: string;
    /** Where you want your block announced on the network */
    region?: string;
}
//# sourceMappingURL=Ip.d.ts.map