import { DeviceCategory } from '../devices.constants'; import { CreateDeviceChannelDto } from './create-device-channel.dto'; import { CreateDeviceControlDto } from './create-device-control.dto'; export declare class CreateDeviceDto { id?: string; type: string; category: DeviceCategory; identifier?: string | null; name: string; description?: string | null; enabled?: boolean; controls?: CreateDeviceControlDto[]; channels?: CreateDeviceChannelDto[]; room_id?: string | null; zone_ids?: string[]; } export declare class ReqCreateDeviceDto { data: CreateDeviceDto; }