import { Wallet } from '@coral-xyz/anchor'; import { Transaction, TransactionInstruction, VersionedTransaction } from '@solana/web3.js'; export declare function wrapInTx(instruction: TransactionInstruction, computeUnits?: number, computeUnitsPrice?: number): Transaction; export declare function getSignedTransactionMap(wallet: Wallet, txsToSign: (Transaction | VersionedTransaction | undefined)[], keys: string[]): Promise<{ [key: string]: Transaction | VersionedTransaction | undefined; }>;