import { Cypher } from './Cypher'; import { IBinary } from '../types'; export { default as Account } from './Account'; export { default as AccountFactory } from './AccountFactory'; export { default as AccountFactoryECDSA } from './ecdsa/AccountFactoryECDSA'; export { default as AccountFactoryED25519 } from './ed25519/AccountFactoryED25519'; declare function _cypher(account: { keyType: string; publicKey: IBinary; }): Cypher; export declare let cypher: typeof _cypher; export declare function setCypherFactory(factory: typeof _cypher): void;