import { IProtocolConstructor, ProtocolType } from '../types'; export * from './BinaryProtocol'; export * from './CompactProtocol'; export * from './JSONProtocol'; export * from './TProtocol'; export declare const supportedProtocols: Array; export declare function isProtocolSupported(protocol: ProtocolType): boolean; export declare function getProtocol(protocol?: ProtocolType): IProtocolConstructor;