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 EthGenerativeArtAssetTypeAtType: { readonly GenArt: "GEN_ART"; }; export type EthGenerativeArtAssetTypeAtType = ClosedEnum; export type EthGenerativeArtAssetType = { atType: EthGenerativeArtAssetTypeAtType; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ contract: string; /** * Collection id */ collection?: string | undefined; }; /** @internal */ export declare const EthGenerativeArtAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EthGenerativeArtAssetTypeAtType$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 EthGenerativeArtAssetTypeAtType$ { /** @deprecated use `EthGenerativeArtAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly GenArt: "GEN_ART"; }>; /** @deprecated use `EthGenerativeArtAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly GenArt: "GEN_ART"; }>; } /** @internal */ export declare const EthGenerativeArtAssetType$inboundSchema: z.ZodType; /** @internal */ export type EthGenerativeArtAssetType$Outbound = { "@type": string; contract: string; collection?: string | undefined; }; /** @internal */ export declare const EthGenerativeArtAssetType$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 EthGenerativeArtAssetType$ { /** @deprecated use `EthGenerativeArtAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthGenerativeArtAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthGenerativeArtAssetType$Outbound` instead. */ type Outbound = EthGenerativeArtAssetType$Outbound; } export declare function ethGenerativeArtAssetTypeToJSON(ethGenerativeArtAssetType: EthGenerativeArtAssetType): string; export declare function ethGenerativeArtAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethgenerativeartassettype.d.ts.map