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 EthOrderCryptoPunksDataAtType: { readonly EthCryptoPunks: "ETH_CRYPTO_PUNKS"; }; export type EthOrderCryptoPunksDataAtType = ClosedEnum; export type EthOrderCryptoPunksData = { atType: EthOrderCryptoPunksDataAtType; stub?: string | undefined; }; /** @internal */ export declare const EthOrderCryptoPunksDataAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EthOrderCryptoPunksDataAtType$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 EthOrderCryptoPunksDataAtType$ { /** @deprecated use `EthOrderCryptoPunksDataAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly EthCryptoPunks: "ETH_CRYPTO_PUNKS"; }>; /** @deprecated use `EthOrderCryptoPunksDataAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly EthCryptoPunks: "ETH_CRYPTO_PUNKS"; }>; } /** @internal */ export declare const EthOrderCryptoPunksData$inboundSchema: z.ZodType; /** @internal */ export type EthOrderCryptoPunksData$Outbound = { "@type": string; stub: string; }; /** @internal */ export declare const EthOrderCryptoPunksData$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 EthOrderCryptoPunksData$ { /** @deprecated use `EthOrderCryptoPunksData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthOrderCryptoPunksData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthOrderCryptoPunksData$Outbound` instead. */ type Outbound = EthOrderCryptoPunksData$Outbound; } export declare function ethOrderCryptoPunksDataToJSON(ethOrderCryptoPunksData: EthOrderCryptoPunksData): string; export declare function ethOrderCryptoPunksDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethordercryptopunksdata.d.ts.map