/** * Wallet management functionality for Akash Network * @module wallet */ /** * Creates a new wallet account * @returns {Promise<{mnemonic: string, address: string}>} The newly created wallet's mnemonic and address */ export declare function createAccount(): Promise<{ mnemonic: any; address: any; }>; /** * Imports an existing wallet using a mnemonic phrase * @param {string} mnemonic - The mnemonic phrase to import * @returns {Promise} The imported wallet accounts */ export declare function importAccount(mnemonic: string): Promise; /** * Retrieves a wallet account by address * @param {string} address - The address of the account to retrieve * @returns {Promise} The wallet accounts */ export declare function getAccount(address: string): Promise; /** * Gets the most recently loaded wallet * @returns {Promise} The last loaded wallet instance */ export declare function getLastLoaded(): Promise;