import { FastifyRequest as Request, FastifyReply as Response } from 'fastify'; import { ReqCreateDeviceChannelControlDto } from '../dto/create-device-channel-control.dto'; import { ChannelControlResponseModel, ChannelControlsResponseModel } from '../models/devices-response.model'; import { ChannelsControlsService } from '../services/channels.controls.service'; import { ChannelsService } from '../services/channels.service'; import { DevicesService } from '../services/devices.service'; export declare class DevicesChannelsControlsController { private readonly devicesService; private readonly channelsService; private readonly channelsControlsService; private readonly logger; constructor(devicesService: DevicesService, channelsService: ChannelsService, channelsControlsService: ChannelsControlsService); findAll(deviceId: string, channelId: string): Promise; findOne(deviceId: string, channelId: string, id: string): Promise; create(deviceId: string, channelId: string, createDto: ReqCreateDeviceChannelControlDto, res: Response, req: Request): Promise; remove(deviceId: string, channelId: string, id: string): Promise; private getOneOrThrow; private getChannelOrThrow; private getDeviceOrThrow; }