import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const ItemTransferAtType: { readonly Transfer: "TRANSFER"; }; export type ItemTransferAtType = ClosedEnum; export type ItemTransfer = { atType: ItemTransferAtType; /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ from: string; }; /** @internal */ export declare const ItemTransferAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ItemTransferAtType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ItemTransferAtType$ { /** @deprecated use `ItemTransferAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Transfer: "TRANSFER"; }>; /** @deprecated use `ItemTransferAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Transfer: "TRANSFER"; }>; } /** @internal */ export declare const ItemTransfer$inboundSchema: z.ZodType; /** @internal */ export type ItemTransfer$Outbound = { "@type": string; from: string; }; /** @internal */ export declare const ItemTransfer$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ItemTransfer$ { /** @deprecated use `ItemTransfer$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ItemTransfer$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ItemTransfer$Outbound` instead. */ type Outbound = ItemTransfer$Outbound; } export declare function itemTransferToJSON(itemTransfer: ItemTransfer): string; export declare function itemTransferFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=itemtransfer.d.ts.map