export { BaseAdapter, ResponseDecoder, IProtocolAdapter, ICosmosProtocolAdapter } from './base'; export { Tendermint34Adapter } from './tendermint34'; export { Tendermint37Adapter } from './tendermint37'; export { Comet38Adapter } from './comet38'; import { IProtocolAdapter, ICosmosProtocolAdapter } from './base'; import { ProtocolVersion, ProtocolInfo } from '../types/protocol'; export declare function createProtocolAdapter(version?: ProtocolVersion): ICosmosProtocolAdapter; export declare function getProtocolInfo(adapter: IProtocolAdapter): ProtocolInfo;