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