import { SignedLegacy } from './transaction-hash.js'; import { DelegationJson, PaymentJson } from './sign-legacy.js'; import { Random } from '../../lib/testing/property.js'; import { ZkappCommand } from '../../bindings/mina-transaction/gen/v1/transaction-bigint.js'; import { NetworkId } from './types.js'; export { RandomTransaction }; declare const RandomTransaction: { payment: Random; delegation: Random; signedPayment: Random>; signedDelegation: Random>; zkappCommand: Random; zkappCommandAndFeePayerKey: Random<{ feePayerKey: bigint; zkappCommand: ZkappCommand; }>; zkappCommandJson: Random<{ feePayer: { body: { publicKey: string; fee: string; validUntil: string | null; nonce: string; }; authorization: string; }; accountUpdates: import("src/bindings/mina-transaction/gen/v1/transaction-json.js").AccountUpdate[]; memo: string; }>; networkId: Random; accountUpdateWithCallDepth: Random; };