import { Account, PublicAccount } from 'tsjs-xpx-chain-sdk'; import { BlockchainNetworkType } from '../model/blockchain/blockchain-network-type'; /** * NemUtils */ export declare class NemUtils { /** * Nem network type */ private networkType; /** * Constructor * @param blockchainNetworkType the blockchain network type */ constructor(blockchainNetworkType: BlockchainNetworkType); /** * Generates a new account */ generateAccount(): Account; /** * Get account from the private key * @param privateKey the private key */ getAccount(privateKey: string): Account; /** * Get the public account from public key * @param publicKey the public key */ getPublicAccount(publicKey: string): PublicAccount; }