import * as z from "zod/v3"; import { CollectionItemDescriptor, CollectionItemDescriptor$Outbound } from "./collectionitemdescriptor.js"; export type AddCollectionItemsRequest = { /** * The ID of the Collection to add items to. */ collectionId: number; /** * The CollectionItemDescriptors of the items being added. */ addedCollectionItemDescriptors?: Array | undefined; }; /** @internal */ export type AddCollectionItemsRequest$Outbound = { collectionId: number; addedCollectionItemDescriptors?: Array | undefined; }; /** @internal */ export declare const AddCollectionItemsRequest$outboundSchema: z.ZodType; export declare function addCollectionItemsRequestToJSON(addCollectionItemsRequest: AddCollectionItemsRequest): string; //# sourceMappingURL=addcollectionitemsrequest.d.ts.map