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 EthOrderDataLegacyAtType: { readonly EthRaribleV1: "ETH_RARIBLE_V1"; }; export type EthOrderDataLegacyAtType = ClosedEnum; export type EthOrderDataLegacy = { atType: EthOrderDataLegacyAtType; fee: string; }; /** @internal */ export declare const EthOrderDataLegacyAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EthOrderDataLegacyAtType$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 EthOrderDataLegacyAtType$ { /** @deprecated use `EthOrderDataLegacyAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly EthRaribleV1: "ETH_RARIBLE_V1"; }>; /** @deprecated use `EthOrderDataLegacyAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly EthRaribleV1: "ETH_RARIBLE_V1"; }>; } /** @internal */ export declare const EthOrderDataLegacy$inboundSchema: z.ZodType; /** @internal */ export type EthOrderDataLegacy$Outbound = { "@type": string; fee: string; }; /** @internal */ export declare const EthOrderDataLegacy$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 EthOrderDataLegacy$ { /** @deprecated use `EthOrderDataLegacy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthOrderDataLegacy$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthOrderDataLegacy$Outbound` instead. */ type Outbound = EthOrderDataLegacy$Outbound; } export declare function ethOrderDataLegacyToJSON(ethOrderDataLegacy: EthOrderDataLegacy): string; export declare function ethOrderDataLegacyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethorderdatalegacy.d.ts.map