import { DataTypeType, PermissionType } from '../devices.constants'; export declare class UpdateDeviceChannelPropertyDto { type: string; identifier?: string | null; permissions?: PermissionType[]; data_type?: DataTypeType; name?: string | null; format?: string[] | number[] | null; invalid?: string | number | boolean | null; step?: number | null; value?: string | number | boolean | null; } export declare class ReqUpdateDeviceChannelPropertyDto { data: UpdateDeviceChannelPropertyDto; }