import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ItemIds = { /** * List of the item id */ ids: Array; }; /** @internal */ export declare const ItemIds$inboundSchema: z.ZodType; /** @internal */ export type ItemIds$Outbound = { ids: Array; }; /** @internal */ export declare const ItemIds$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 ItemIds$ { /** @deprecated use `ItemIds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ItemIds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ItemIds$Outbound` instead. */ type Outbound = ItemIds$Outbound; } export declare function itemIdsToJSON(itemIds: ItemIds): string; export declare function itemIdsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=itemids.d.ts.map