import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Transaction, Transaction$Outbound } from "./transaction.js"; export type OrderResponse = { id: string; transaction: Transaction; }; /** @internal */ export declare const OrderResponse$inboundSchema: z.ZodType; /** @internal */ export type OrderResponse$Outbound = { id: string; transaction: Transaction$Outbound; }; /** @internal */ export declare const OrderResponse$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 OrderResponse$ { /** @deprecated use `OrderResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OrderResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OrderResponse$Outbound` instead. */ type Outbound = OrderResponse$Outbound; } export declare function orderResponseToJSON(orderResponse: OrderResponse): string; export declare function orderResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=orderresponse.d.ts.map