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