import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { Asset, Asset$Outbound } from "./asset.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { PreparedOrderTx, PreparedOrderTx$Outbound } from "./preparedordertx.js"; export type PrepareOrderTxResponse = { /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ transferProxyAddress?: string | undefined; asset: Asset; transaction: PreparedOrderTx; value: string; }; /** @internal */ export declare const PrepareOrderTxResponse$inboundSchema: z.ZodType; /** @internal */ export type PrepareOrderTxResponse$Outbound = { transferProxyAddress?: string | undefined; asset: Asset$Outbound; transaction: PreparedOrderTx$Outbound; value: string; }; /** @internal */ export declare const PrepareOrderTxResponse$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 PrepareOrderTxResponse$ { /** @deprecated use `PrepareOrderTxResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PrepareOrderTxResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PrepareOrderTxResponse$Outbound` instead. */ type Outbound = PrepareOrderTxResponse$Outbound; } export declare function prepareOrderTxResponseToJSON(prepareOrderTxResponse: PrepareOrderTxResponse): string; export declare function prepareOrderTxResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=prepareordertxresponse.d.ts.map