import { CallArg, ObjectRef, Reservation, WithdrawFrom, WithdrawalTypeArg } from "./data/internal.mjs"; import { SerializedBcs } from "@mysten/bcs"; //#region src/transactions/Inputs.d.ts declare function Pure(data: Uint8Array | SerializedBcs): Extract; 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; FundsWithdrawal({ reservation, typeArg, withdrawFrom }: { reservation: Reservation; typeArg: WithdrawalTypeArg; withdrawFrom: WithdrawFrom; }): Extract; }; //#endregion export { Inputs }; //# sourceMappingURL=Inputs.d.mts.map