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 EthOrderDataRaribleV2DataV2AtType: { readonly EthRaribleV22: "ETH_RARIBLE_V2_2"; }; export type EthOrderDataRaribleV2DataV2AtType = ClosedEnum; export type EthOrderDataRaribleV2DataV2 = { atType: EthOrderDataRaribleV2DataV2AtType; 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 EthOrderDataRaribleV2DataV2AtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EthOrderDataRaribleV2DataV2AtType$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 EthOrderDataRaribleV2DataV2AtType$ { /** @deprecated use `EthOrderDataRaribleV2DataV2AtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly EthRaribleV22: "ETH_RARIBLE_V2_2"; }>; /** @deprecated use `EthOrderDataRaribleV2DataV2AtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly EthRaribleV22: "ETH_RARIBLE_V2_2"; }>; } /** @internal */ export declare const EthOrderDataRaribleV2DataV2$inboundSchema: z.ZodType; /** @internal */ export type EthOrderDataRaribleV2DataV2$Outbound = { "@type": string; payouts: Array; originFees: Array; isMakeFill: boolean; }; /** @internal */ export declare const EthOrderDataRaribleV2DataV2$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 EthOrderDataRaribleV2DataV2$ { /** @deprecated use `EthOrderDataRaribleV2DataV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthOrderDataRaribleV2DataV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthOrderDataRaribleV2DataV2$Outbound` instead. */ type Outbound = EthOrderDataRaribleV2DataV2$Outbound; } export declare function ethOrderDataRaribleV2DataV2ToJSON(ethOrderDataRaribleV2DataV2: EthOrderDataRaribleV2DataV2): string; export declare function ethOrderDataRaribleV2DataV2FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethorderdatarariblev2datav2.d.ts.map