/// /** * Encrypt a raw mnemonic phrase to be password protected * @param {string} phrase - Raw mnemonic phrase * @param {string} password - Password to encrypt mnemonic with * @return {Promise} The encrypted phrase * @private * @ignore * */ export declare function encryptMnemonic(phrase: string, password: string): Promise; /** * Encrypt a raw mnemonic phrase with a password * @param {string | Buffer} data - Buffer or hex-encoded string of the encrypted mnemonic * @param {string} password - Password for data * @return {Promise} the raw mnemonic phrase * @private * @ignore */ export declare function decryptMnemonic(data: (string | Buffer), password: string): Promise;