import { Web3Context } from "web3-core"; import { EthExecutionAPI, KeyStore } from "web3-types"; import { KaiaWeb3Account } from "../index.js"; export declare function context_create(context: Web3Context): () => KaiaWeb3Account; export declare function context_privateKeyToAccount(context: Web3Context): (privateKey: Uint8Array | string, address?: string) => KaiaWeb3Account; export declare function context_decrypt(context: Web3Context): (keystore: KeyStore | string, password: string, options?: Record) => Promise; export declare function context_decryptList(context: Web3Context): (keystore: KeyStore | string, password: string, options?: Record) => Promise;