import { AccountDeleteInstructions, AccountSetInstructions, CheckCancelInstructions, CheckCashInstructions, CheckCreateInstructions, DepositPreauthInstructions, EscrowCancelInstructions, EscrowCreateInstructions, EscrowFinishInstructions, OfferCancelInstructions, OfferCreateInstructions, PaymentChannelClaimInstructions, PaymentChannelCreateInstructions, PaymentChannelFundInstructions, PaymentInstructions, SetRegularKeyInstructions, SignerListSetInstructions, TrustSetInstructions } from './instructions'; /** * Stores the actual transaction request or instructions. * Taken from https://xrpl.org/transaction-types.html. */ declare type TransactionInstructions = AccountSetInstructions | AccountDeleteInstructions | CheckCancelInstructions | CheckCashInstructions | CheckCreateInstructions | DepositPreauthInstructions | EscrowCancelInstructions | EscrowCreateInstructions | EscrowFinishInstructions | OfferCancelInstructions | OfferCreateInstructions | PaymentInstructions | PaymentChannelClaimInstructions | PaymentChannelCreateInstructions | PaymentChannelFundInstructions | SetRegularKeyInstructions | SignerListSetInstructions | TrustSetInstructions; export default TransactionInstructions; //# sourceMappingURL=TransactionInstructions.d.ts.map