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 ItemCollection = { /** * Collection id */ id: string; name: string; bestBidOrder?: Order | undefined; bestSellOrder?: Order | undefined; }; /** @internal */ export declare const ItemCollection$inboundSchema: z.ZodType; /** @internal */ export type ItemCollection$Outbound = { id: string; name: string; bestBidOrder?: Order$Outbound | undefined; bestSellOrder?: Order$Outbound | undefined; }; /** @internal */ export declare const ItemCollection$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 ItemCollection$ { /** @deprecated use `ItemCollection$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ItemCollection$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ItemCollection$Outbound` instead. */ type Outbound = ItemCollection$Outbound; } export declare function itemCollectionToJSON(itemCollection: ItemCollection): string; export declare function itemCollectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=itemcollection.d.ts.map