import type { SerializedBcs } from '@mysten/bcs'; import type { CallArg, ObjectRef } from './data/internal.js'; declare function Pure(data: Uint8Array | SerializedBcs): Extract; export declare const Inputs: { Pure: typeof Pure; ObjectRef({ objectId, digest, version }: ObjectRef): Extract; SharedObjectRef({ objectId, mutable, initialSharedVersion, }: { objectId: string; mutable: boolean; initialSharedVersion: number | string; }): Extract; ReceivingRef({ objectId, digest, version }: ObjectRef): Extract; }; export {};