import type { Wallet } from "@saberhq/solana-contrib"; import type { ConfirmOptions, Connection, Signer, Transaction } from "@solana/web3.js"; export declare function executeMultiTransactions(connection: Connection, wallet: Wallet, txs: { tx: Transaction; signers?: Signer[]; }[], config?: { batchSize?: number; errorHandler?: (e: unknown, ix: { sequence: number; total: number; }) => T; successHandler?: (ix: { sequence: number; total: number; txid: string; }) => T; confirmOptions?: ConfirmOptions; }): Promise; //# sourceMappingURL=executeMultiTransactions.d.ts.map