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 FlowOrderDataV1AtType: { readonly FlowRaribleV1: "FLOW_RARIBLE_V1"; }; export type FlowOrderDataV1AtType = ClosedEnum; export type FlowOrderDataV1 = { atType: FlowOrderDataV1AtType; payouts: Array; originFees: Array; }; /** @internal */ export declare const FlowOrderDataV1AtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FlowOrderDataV1AtType$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 FlowOrderDataV1AtType$ { /** @deprecated use `FlowOrderDataV1AtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly FlowRaribleV1: "FLOW_RARIBLE_V1"; }>; /** @deprecated use `FlowOrderDataV1AtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly FlowRaribleV1: "FLOW_RARIBLE_V1"; }>; } /** @internal */ export declare const FlowOrderDataV1$inboundSchema: z.ZodType; /** @internal */ export type FlowOrderDataV1$Outbound = { "@type": string; payouts: Array; originFees: Array; }; /** @internal */ export declare const FlowOrderDataV1$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 FlowOrderDataV1$ { /** @deprecated use `FlowOrderDataV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FlowOrderDataV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FlowOrderDataV1$Outbound` instead. */ type Outbound = FlowOrderDataV1$Outbound; } export declare function flowOrderDataV1ToJSON(flowOrderDataV1: FlowOrderDataV1): string; export declare function flowOrderDataV1FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=floworderdatav1.d.ts.map