import { Ipv4 } from '../Ipv4';
/** Nodes in nutanix cluster */
export interface Nodes {
    /** Hypervisor IP */
    ahvIp: Ipv4;
    /** Controler VM IP */
    cvmIp: Ipv4;
    /** Name of the associated server */
    server: string;
}
//# sourceMappingURL=Nodes.d.ts.map