import { Wallet } from './address-importer'; export default class AddressGenerator { /** * Generates a hierarchial deterministic BIP32/39/44 wallet * * @param {string} [entropy] - (Optional) Custom entropy if the caller doesn't want a default generated entropy * @param {string} [seedPassword] - (Optional) Password for the seed */ static generateWallet: (entropy?: string, seedPassword?: string) => Wallet; /** * Generates a legacy Nano wallet */ static generateLegacyWallet: (seed?: string) => Wallet; }