import { DeviceCategory } from '../../../modules/devices/devices.constants'; export declare class GenerateDeviceDto { category: DeviceCategory; name: string; description?: string | null; room_id?: string | null; required_channels_only?: boolean; required_properties_only?: boolean; auto_simulate?: boolean; simulate_interval?: number; behavior_mode?: string; } export declare class ReqGenerateDeviceDto { data: GenerateDeviceDto; }