import { IpVersionEnum } from '../coreTypes/IpVersionEnum';
import { GeolocationEnum } from './ip/GeolocationEnum';
import { TypeEnum } from './ip/TypeEnum';
/** Information about an IP address for a VPS Virtual Machine */
export interface Ip {
    /**  */
    gateway?: Ip;
    /**  */
    geolocation: GeolocationEnum;
    /** The effective ip address of the Ip object */
    ipAddress: Ip;
    /**  */
    macAddress?: string;
    /**  */
    reverse?: string;
    /**  */
    type: TypeEnum;
    /**  */
    version: IpVersionEnum;
}
//# sourceMappingURL=Ip.d.ts.map