import { IpmiSupportedFeatures } from './IpmiSupportedFeatures';
/** Server IPMI interface */
export interface Ipmi {
    /** true, if IPMI is available on this server */
    activated: boolean;
    /** A structure describing the IPMI supported features */
    supportedFeatures: IpmiSupportedFeatures;
}
//# sourceMappingURL=Ipmi.d.ts.map