import { DeviceVendor } from './DeviceVendor'; import { DeviceType } from './DeviceType'; export declare class DeviceModel { name: string; vendor: DeviceVendor; deviceType: DeviceType; constructor(name: string, vendor: DeviceVendor, deviceType: DeviceType); }