import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { Payout, Payout$Outbound } from "./payout.js"; export type PrepareOrderTxForm = { /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ maker: string; /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ taker?: string | undefined; amount: string; /** * Value of the payouts for the order */ payouts: Array; /** * Value of the origin fees for the order */ originFees: Array; }; /** @internal */ export declare const PrepareOrderTxForm$inboundSchema: z.ZodType; /** @internal */ export type PrepareOrderTxForm$Outbound = { maker: string; taker?: string | undefined; amount: string; payouts: Array; originFees: Array; }; /** @internal */ export declare const PrepareOrderTxForm$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 PrepareOrderTxForm$ { /** @deprecated use `PrepareOrderTxForm$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PrepareOrderTxForm$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PrepareOrderTxForm$Outbound` instead. */ type Outbound = PrepareOrderTxForm$Outbound; } export declare function prepareOrderTxFormToJSON(prepareOrderTxForm: PrepareOrderTxForm): string; export declare function prepareOrderTxFormFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=prepareordertxform.d.ts.map