import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { LazyItem, LazyItem$Outbound } from "./lazyitem.js"; export type LazyItemMintForm = { /** * Type of an Asset */ item: LazyItem; }; /** @internal */ export declare const LazyItemMintForm$inboundSchema: z.ZodType; /** @internal */ export type LazyItemMintForm$Outbound = { item: LazyItem$Outbound; }; /** @internal */ export declare const LazyItemMintForm$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 LazyItemMintForm$ { /** @deprecated use `LazyItemMintForm$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LazyItemMintForm$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LazyItemMintForm$Outbound` instead. */ type Outbound = LazyItemMintForm$Outbound; } export declare function lazyItemMintFormToJSON(lazyItemMintForm: LazyItemMintForm): string; export declare function lazyItemMintFormFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=lazyitemmintform.d.ts.map