import AccountFactory from '../AccountFactory'; import Account from '../Account'; export default class AccountFactoryED25519 extends AccountFactory { keyType: string; constructor(networkId: string); createFromSeed(seed: string, nonce?: number | Uint8Array): Account; createFromPrivateKey(privateKey: string | Uint8Array): Account; createFromPublicKey(publicKey: string | Uint8Array): Account; create(numberOfWords?: number): Account; private static buildSignKeyPairFromSeed; private static buildSeedHash; private static buildSignKeyPairFromPrivateKey; }