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 ImmutablexOrderDataV1AtType: { readonly ImmutablexRaribleV1: "IMMUTABLEX_RARIBLE_V1"; }; export type ImmutablexOrderDataV1AtType = ClosedEnum; export type ImmutablexOrderDataV1 = { atType: ImmutablexOrderDataV1AtType; payouts: Array; originFees: Array; }; /** @internal */ export declare const ImmutablexOrderDataV1AtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ImmutablexOrderDataV1AtType$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 ImmutablexOrderDataV1AtType$ { /** @deprecated use `ImmutablexOrderDataV1AtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly ImmutablexRaribleV1: "IMMUTABLEX_RARIBLE_V1"; }>; /** @deprecated use `ImmutablexOrderDataV1AtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly ImmutablexRaribleV1: "IMMUTABLEX_RARIBLE_V1"; }>; } /** @internal */ export declare const ImmutablexOrderDataV1$inboundSchema: z.ZodType; /** @internal */ export type ImmutablexOrderDataV1$Outbound = { "@type": string; payouts: Array; originFees: Array; }; /** @internal */ export declare const ImmutablexOrderDataV1$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 ImmutablexOrderDataV1$ { /** @deprecated use `ImmutablexOrderDataV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ImmutablexOrderDataV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ImmutablexOrderDataV1$Outbound` instead. */ type Outbound = ImmutablexOrderDataV1$Outbound; } export declare function immutablexOrderDataV1ToJSON(immutablexOrderDataV1: ImmutablexOrderDataV1): string; export declare function immutablexOrderDataV1FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=immutablexorderdatav1.d.ts.map