import { CreateGatewaySummary } from '../network/CreateGatewaySummary';
import { Ip } from '../../Ip';
/** Parameters to create a floating IP for a loadbalancer */
export interface CreateFloatingIp {
    /** Parameters to create a gateway if required */
    gateway?: CreateGatewaySummary;
    /** Private loadbalancer IP to associate the floating IP with */
    ip: Ip;
}
//# sourceMappingURL=CreateFloatingIp.d.ts.map