import { Ip } from '../../Ip';
/** IpAddress */
export interface IpAddress {
    /** Gateway IP */
    gatewayIp?: Ip;
    /** Instance IP address */
    ip: string;
    /** Network ID */
    networkId: string;
    /** Instance IP address type */
    type: string;
    /** IP version */
    version: number;
}
//# sourceMappingURL=IpAddress.d.ts.map