import { Provider } from "@project-serum/anchor"; import { TransactionSignature } from "@solana/web3.js"; import { Construction, RunConstructionOpts, TxRequestsTyped } from "../index"; /** * @param txFailed - the tx on which it failed and the instruction idx */ export declare type SendAllError = { err: any; txGroup: number; txFailed: { txIdx: number; instrIdx: number; }; txInner?: number; }; /** * Similar to `send`, but for an array of transactions and signers. * * @params initialActionIdxOffset - the initial offset within the order to start running actions from */ export declare const sendAllTypedWithError: (provider: Provider, reqs: TxRequestsTyped[], construction: Construction, opts: RunConstructionOpts, initialActionOrderOffset?: number) => Promise>;