import { DiscoveryService } from '@nestjs/core'; import { Channel } from '../channel'; import { ChannelConfig } from '../../config'; export declare class CompositeChannelFactory { private readonly discoveryService; constructor(discoveryService: DiscoveryService); create(channelConfig: ChannelConfig): Channel; }