import { PluginChainFactory } from './chainFactory'; import { ChainError, throwNewError } from './errors'; import { Account, Chain, CreateAccount, Transaction, ChainJsPlugin, ChainJsPluginOptions } from './interfaces'; import * as Crypto from './crypto'; import * as Models from './models'; import * as Helpers from './helpers'; import * as Interfaces from './interfaces'; import * as Errors from './errors'; import * as CryptoHelpers from './crypto/genericCryptoHelpers'; import * as CryptoAsymmetricModels from './crypto/asymmetricModels'; import * as CryptoAsymmetricHelpers from './crypto/asymmetricHelpers'; import * as PluginInterfaces from './interfaces/plugins/multisig'; import { encryptWithPublicKey, toAsymEncryptedDataString } from './crypto/asymmetric'; declare const ChainType: typeof Models.ChainType; export { Account, Chain, ChainError, throwNewError, ChainType, CreateAccount, Crypto, Helpers, Models, Transaction, ChainJsPlugin, // Needs to be moved to the plugin ChainJsPluginOptions, // Needs to be moved to the plugin Interfaces, Errors, // Note that individual errors are also returned. These need to be removed byt will break existing code CryptoHelpers, CryptoAsymmetricModels, CryptoAsymmetricHelpers, PluginChainFactory, PluginInterfaces, encryptWithPublicKey, toAsymEncryptedDataString, };