import { ICoinProtocol } from '../protocols/ICoinProtocol';
declare const supportedProtocols: () => ICoinProtocol[];
declare const addSupportedProtocol: (newProtocol: ICoinProtocol) => void;
declare const removeSupportedProtocol: (protocolToRemove: ICoinProtocol) => void;
export { addSupportedProtocol, removeSupportedProtocol, supportedProtocols };
