export declare const generateNewWallet: () => { mnemonic: string; privateKey: string; publicKey: string; address: string; }; export declare const generateWalletFromMnemonic: (mnemonic: string) => { mnemonic: string; privateKey: string; publicKey: string; address: string; }; export declare const generateWalletFromPrivateKey: (privateKey: string) => { privateKey: string; publicKey: string; address: string; };