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