import { Blockchain, GeneratedWalletAddress } from "./types"; export declare class CryptoWallet { private static MNEMONIC_ENTROPY_BYTES; private static DERIVATION_PATHS; /** Currency codes understood by multicoin-address-validator, per blockchain. */ private static VALIDATOR_CURRENCIES; static generateWalletWithMnemonicDetails(blockchain: Blockchain): GeneratedWalletAddress; private static generateWalletFromMnemonic; private static getPublicKey; private static getPrivateKeyFromMnemonic; private static getAddressFromPublicKey; private static getEthereumStyleAddress; private static getDerivationPath; private static generateXbnWallet; private static generateSolWallet; }