import { VerifyOptions } from '../../types.js'; import { EventEmitter } from 'events'; import { BatchVerifyTransactionInfo } from '../../../types.js'; import { VerifyInput } from '../../../api/verify/types.js'; import { ProofOptions } from '../../../config/index.js'; export declare class BatchVerificationBuilder { private readonly batchExecuteVerify; private readonly options; private nonceSet; private registeredVkSet; constructor(batchExecuteVerify: (options: VerifyOptions, input: VerifyInput[]) => Promise<{ events: EventEmitter; transactionResult: Promise; }>, proofOptions: ProofOptions, accountAddress?: string); nonce(nonce: number): this; withRegisteredVk(): this; execute(input: VerifyInput[]): Promise<{ events: EventEmitter; transactionResult: Promise; }>; } //# sourceMappingURL=index.d.ts.map