export declare function createAccount(password: string): Promise<{ mnemonic: any; address: any; }>; export declare function importAccount(mnemonic: string): Promise; export declare function getAccount(address: string): Promise; export declare function getLastLoaded(): Promise;