import { DatacenterOptionState } from './option/DatacenterOptionState';
import { StateEnum } from './option/StateEnum';
/** VMware NSX-T option */
export interface Nsxt {
    /** Installation status on all datacenters */
    datacentersState?: DatacenterOptionState[];
    /** State of the NSX-T option */
    state: StateEnum;
    /** Url of the NSX-T interface */
    url?: string;
    /** Version of the NSX-T */
    version?: string;
}
//# sourceMappingURL=Nsxt.d.ts.map