import { UpdateSingleDataSourceDto } from '../../../modules/dashboard/dto/update-data-source.dto'; import { DATA_SOURCES_DEVICE_TYPE } from '../data-sources-device-channel.constants'; export declare class UpdateDeviceChannelDataSourceDto extends UpdateSingleDataSourceDto { readonly type: typeof DATA_SOURCES_DEVICE_TYPE; device?: string; channel?: string; property?: string; icon?: string | null; }