import { UpdateDeviceDto } from '../../../modules/devices/dto/update-device.dto'; import { SIMULATOR_TYPE } from '../simulator.constants'; export declare class UpdateSimulatorDeviceDto extends UpdateDeviceDto { type: typeof SIMULATOR_TYPE; auto_simulate?: boolean; simulate_interval?: number; behavior_mode?: string; }