import { IChannelFactory } from '../i-channel-factory';
import { ChannelConfig, InMemoryChannelConfig } from '../../config';
import { Channel } from '../channel';
export declare class InMemoryChannelFactory implements IChannelFactory<InMemoryChannelConfig> {
    create(channelConfig: ChannelConfig): Channel<InMemoryChannelConfig>;
}
