import { GetRandomBytes } from './cryptoRandom'; export declare function encryptMnemonic(phrase: string, password: string, opts?: { getRandomBytes?: GetRandomBytes; }): Promise; export declare function decryptMnemonic(data: string | Uint8Array, password: string): Promise;