import { GooglePubSubChannel } from './google-pub-sub.channel';
import { IChannelFactory } from '@nestjstools/messaging';
import { GooglePubSubChannelConfig } from './google-pub-sub.channel-config';
export declare class GooglePubSubChannelFactory implements IChannelFactory<GooglePubSubChannelConfig> {
    create(channelConfig: GooglePubSubChannelConfig): GooglePubSubChannel;
}
