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