import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { Order, Order$Outbound } from "./order.js"; export type Orders = { /** * Continuation token to paginate orders search result */ continuation?: string | undefined; /** * List of found orders */ orders: Array; }; /** @internal */ export declare const Orders$inboundSchema: z.ZodType; /** @internal */ export type Orders$Outbound = { continuation?: string | undefined; orders: Array; }; /** @internal */ export declare const Orders$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 Orders$ { /** @deprecated use `Orders$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Orders$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Orders$Outbound` instead. */ type Outbound = Orders$Outbound; } export declare function ordersToJSON(orders: Orders): string; export declare function ordersFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=orders.d.ts.map