import { IConnection } from "../../../connection";
export declare enum DeviceType {
    HUB = "HUB",
    LOCK = "LOCK",
    ELEVATOR_LOCK = "ELEVATOR LOCK",
    THERMOSTAT = "THERMOSTAT",
    TV = "TV"
}
export interface IRawDevice {
    deviceId?: string;
    deviceType: DeviceType;
    name?: string;
    connection: IConnection;
    propertyId: string;
    zoneId: string;
    [key: string]: any;
}
