import { ChannelCategory } from '../devices.constants'; import { CreateDeviceChannelControlDto } from './create-device-channel-control.dto'; import { CreateDeviceChannelPropertyDto } from './create-device-channel-property.dto'; export declare class CreateDeviceChannelDto { id?: string; type: string; category: ChannelCategory; identifier?: string | null; name: string; description?: string | null; parent?: string | null; controls?: CreateDeviceChannelControlDto[]; properties?: CreateDeviceChannelPropertyDto[]; } export declare class ReqCreateDeviceChannelDto { data: CreateDeviceChannelDto; }