import { Ip } from '../Ip';
import { StateEnum } from './option/StateEnum';
/** Private management gateway */
export interface PrivateGateway {
    /** Ip set on your private gateway in your network */
    customerIp?: Ip;
    /** Your netmask set on the private gateway */
    customerNetmask?: Ip;
    /** Portgroup in your VMware on OVHcloud used to deploy the private gateway */
    customerPortGroup?: string;
    /** State of the option */
    state: StateEnum;
}
//# sourceMappingURL=PrivateGateway.d.ts.map