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"; import { Payout, Payout$Outbound } from "./payout.js"; export declare const EthOrderDataRaribleV2DataV3AtType: { readonly EthRaribleV23: "ETH_RARIBLE_V2_3"; }; export type EthOrderDataRaribleV2DataV3AtType = ClosedEnum; export type EthOrderDataRaribleV2DataV3 = { atType: EthOrderDataRaribleV2DataV3AtType; payouts: Array; originFees: Array; /** * If true, the 'fill' part of the order applies to the 'make' side, otherwise to the 'take' side */ isMakeFill: boolean; }; /** @internal */ export declare const EthOrderDataRaribleV2DataV3AtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EthOrderDataRaribleV2DataV3AtType$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 EthOrderDataRaribleV2DataV3AtType$ { /** @deprecated use `EthOrderDataRaribleV2DataV3AtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly EthRaribleV23: "ETH_RARIBLE_V2_3"; }>; /** @deprecated use `EthOrderDataRaribleV2DataV3AtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly EthRaribleV23: "ETH_RARIBLE_V2_3"; }>; } /** @internal */ export declare const EthOrderDataRaribleV2DataV3$inboundSchema: z.ZodType; /** @internal */ export type EthOrderDataRaribleV2DataV3$Outbound = { "@type": string; payouts: Array; originFees: Array; isMakeFill: boolean; }; /** @internal */ export declare const EthOrderDataRaribleV2DataV3$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 EthOrderDataRaribleV2DataV3$ { /** @deprecated use `EthOrderDataRaribleV2DataV3$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthOrderDataRaribleV2DataV3$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthOrderDataRaribleV2DataV3$Outbound` instead. */ type Outbound = EthOrderDataRaribleV2DataV3$Outbound; } export declare function ethOrderDataRaribleV2DataV3ToJSON(ethOrderDataRaribleV2DataV3: EthOrderDataRaribleV2DataV3): string; export declare function ethOrderDataRaribleV2DataV3FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethorderdatarariblev2datav3.d.ts.map