import { AbstractTransactionBuilder } from '../../../core/AbstractTransactionBuilder.cjs'; import { TransactionFormat2 } from './interfaces/TransactionFormat2.cjs'; import '../../../core/interfaces/Transaction.cjs'; declare class TransactionBuilder extends AbstractTransactionBuilder { build(): TransactionFormat2; /** * Set the `data` field. * @param quantity The value to set as the field. * @returns `this` instance for further method chaining. */ data(data: any): this; /** * Set the `data_root` field. * @param quantity The value to set as the field. * @returns `this` instance for further method chaining. */ dataRoot(dataRoot: string): this; /** * Set the `data_size` field. * @param quantity The value to set as the field. * @returns `this` instance for further method chaining. */ dataSize(dataSize: string): this; } export { TransactionBuilder };