import { AddressLookupTableAccount, ConfirmOptions, Connection, Finality, Keypair, Signer, TransactionInstruction } from '@solana/web3.js'; export type BuildAndSendTxArgs = { conn: Connection; payer: Signer; ixs: TransactionInstruction[]; extraSigners?: Signer[]; opts?: ConfirmOptions; commitment?: Finality; debug?: boolean; lookupTableAccounts?: [AddressLookupTableAccount] | undefined; }; export declare const buildAndSendTx: ({ conn, payer, ixs, extraSigners, opts, commitment, debug, lookupTableAccounts, }: BuildAndSendTxArgs) => Promise; export declare const createFundedWallet: ({ conn, payer, sol, }: { conn: Connection; payer: Signer; sol?: number | undefined; }) => Promise; export declare const makeNTraders: ({ conn, payer, n, sol, }: { conn: Connection; payer: Keypair; n: number; sol?: number | undefined; }) => Promise; //# sourceMappingURL=tx.d.ts.map