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