import { BmcSupportedFeatures } from './BmcSupportedFeatures';
/** Server BMC interface (formerly named IPMI) */
export interface BMC {
    /** True, if a BMC is available on this server */
    available: boolean;
    /** A structure describing the BMC supported features */
    supportedFeatures: BmcSupportedFeatures;
}
//# sourceMappingURL=BMC.d.ts.map