import { FastifyReply } from 'fastify'; import { ChannelsPropertiesService } from '../../../modules/devices/services/channels.properties.service'; import { ReqUpdatePropertiesDto } from '../dto/third-party-property-update-request.dto'; export declare class ThirdPartyDemoController { private readonly channelsPropertiesService; private readonly logger; private queue; constructor(channelsPropertiesService: ChannelsPropertiesService); controlDevice(body: ReqUpdatePropertiesDto, res: FastifyReply): Promise; }