import { ICommandHandler } from '@nestjs/cqrs';
import { ConfigureIoTChannelCommand } from '../commands';
import { IoTChannelService } from '../iot-channel.service';
export declare class ConfigureIoTChannelCommandHandler implements ICommandHandler<ConfigureIoTChannelCommand, void> {
    private readonly channel;
    constructor(channel: IoTChannelService);
    execute(command: ConfigureIoTChannelCommand): Promise<void>;
}
//# sourceMappingURL=configure-iot-channel.handler.d.ts.map