import type { IKeystore as IEipKeystore } from "@chainsafe/bls-keystore"; import type { Keccak256Hash, Password } from "./types.js"; export declare const decryptEipKeystore: (password: Password, eipKeystore: IEipKeystore) => Promise; export declare const keccak256Checksum: (password: Password, eipKeystore: IEipKeystore) => Promise;