import { Relation } from 'typeorm'; import { Device } from './device'; export declare class DeviceType { id: number; brand: string; model: string; modelFamily: string; description: string | null; tags: string | null; url: string | null; name: string | null; pictureUrl: string | null; userManualUrl: string | null; notes: string | null; supported: boolean | null; activatable: boolean | null; selfActivatable: boolean | null; port: number | null; protocolMatch: string | null; stage: string | null; identifierType: string; landingPage: string | null; troubleshooting: string | null; protocol: string | null; readOnly: boolean | null; customerFacingModel: string | null; customerFacingName: string | null; hapnModel: string | null; hapnName: string | null; acumaticaInventoryIds: number[] | null; assetTrackerLongSleep: boolean; devices: Relation[]; }