/** * Browser storage implementation to replace keytar functionality * @module wallet/storage */ /** * Gets a stored password/mnemonic * @returns {Promise} The stored test mnemonic */ export declare function getPassword(): Promise; /** * Sets a password/mnemonic in storage * @returns {Promise} */ export declare function setPassword(): Promise; declare const _default: { getPassword: typeof getPassword; setPassword: typeof setPassword; }; export default _default;