import { PublicKey } from '@meer-js/crypto'; import { Action } from './actions.js'; import { ITransaction } from './schema.js'; /** * Creates a new transaction object with the provided parameters. * @param signerId The NEAR account ID of the transaction signer. * @param publicKey The public key associated with the signer. * @param receiverId The NEAR account ID of the transaction receiver. * @param nonce The nonce value for the transaction, represented as a BN, string, or number. * @param actions An array of transaction actions to be performed. * @param blockHash The hash of the block where the transaction will be included. * @returns A new transaction object initialized with the provided parameters. */ export declare function createTransaction(signerId: string, publicKey: PublicKey, receiverId: string, nonce: bigint | string | number, actions: Action[], blockHash: Uint8Array): ITransaction; //# sourceMappingURL=create_transaction.d.ts.map