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