import { MacAddress } from '../MacAddress';
/** Hardware properties */
export interface Hardware {
    /** True if hardware can be linked to a service without deviceID */
    canBeLinkedToService: boolean;
    /** Hardware MAC address */
    mac?: MacAddress;
    /** Hardware model */
    model: string;
    /** Hardware name */
    name: string;
    /** The hardware pretty model name */
    prettyModelName: string;
    /** Hardware serial */
    serial: string;
}
//# sourceMappingURL=Hardware.d.ts.map