import { SuiClient } from '@mysten/sui/client'; import { Transaction } from '@mysten/sui/transactions'; import { SuiCall } from './types'; /** Build a serialized sui call (base64 tx bytes + humanized commands). */ export declare function buildSuiCall(from: string, tx: Transaction, client: SuiClient): Promise; type NumberMode = 'string' | 'number' | 'bigint'; type Options = { numbers?: NumberMode; decode32As?: 'address' | 'vector'; }; export declare function resolveCommandsTyped(root: { inputs: any[]; commands: any[]; }, opts?: Options): any[]; export {};