/** Managed Kubernetes cluster private networking configuration */
export interface PrivateNetworkConfiguration {
    /** If defined, all egress traffic will be routed towards this IP address, which should belong to the private network. Empty string means disabled. */
    defaultVrackGateway: string;
    /** Defines whether routing should default to using the nodes' private interface, instead of their public interface. Default is false. */
    privateNetworkRoutingAsDefault?: boolean;
}
//# sourceMappingURL=PrivateNetworkConfiguration.d.ts.map