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<Uint8Array>;
export declare const keccak256Checksum: (password: Password, eipKeystore: IEipKeystore) => Promise<Keccak256Hash>;
