/** Infos about a device system */
export interface DeviceSystem {
    /** Device CPU */
    cpu?: string;
    /** Device hostname */
    hostname?: string;
    /** Device linux kernel version */
    kernel?: string;
    /** Device mac address (first interface mac) */
    mac?: string;
    /** Device model */
    model?: string;
    /** Name of the device board */
    name?: string;
    /** OVH offer name of the device board */
    offerName?: string;
    /** OVH name of the device board */
    ovhName?: string;
}
//# sourceMappingURL=DeviceSystem.d.ts.map