import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type OrderIds = { /** * Array of the orders Ids in format 'ETHEREUM:${id}' */ ids: Array; }; /** @internal */ export declare const OrderIds$inboundSchema: z.ZodType; /** @internal */ export type OrderIds$Outbound = { ids: Array; }; /** @internal */ export declare const OrderIds$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 OrderIds$ { /** @deprecated use `OrderIds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OrderIds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OrderIds$Outbound` instead. */ type Outbound = OrderIds$Outbound; } export declare function orderIdsToJSON(orderIds: OrderIds): string; export declare function orderIdsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=orderids.d.ts.map