import Account from "../schema/Account"; declare type Options = { passphrase?: string; strength?: number; wordlist?: string; accountPath?: string; changePath?: string; addressIndex?: number; }; declare const mnemonic: (options?: Options) => Account; export default mnemonic;