import { Transaction, TransactionResult } from '@mysten/sui/transactions'; import { NETWORK } from '../core'; export declare class I32 { readonly network: NETWORK; constructor(network?: NETWORK); create(value: number, tx: Transaction): TransactionResult; }