import { ProgressCallback } from "ethers6";
export interface KeystoreAccountList {
    address: string;
    privateKey: string;
    privateKeyList: string[];
}
export declare function decryptKeystoreList(json: string, password: Uint8Array | string, progressCallback?: ProgressCallback): Promise<KeystoreAccountList>;
export declare function decryptKeystoreListSync(json: string, password: Uint8Array | string): KeystoreAccountList;
