import * as z from "zod/v3"; export type EditCollectionItemRequest = { /** * The optional name of the Collection item. */ name?: string | undefined; /** * A helpful description of why this CollectionItem is in the Collection that it's in. */ description?: string | undefined; /** * The emoji icon for this CollectionItem. Only used for Text type items. */ icon?: string | undefined; /** * The ID of the Collection to edit CollectionItems in. */ collectionId: number; /** * The ID of the CollectionItem to edit. */ itemId: string; }; /** @internal */ export type EditCollectionItemRequest$Outbound = { name?: string | undefined; description?: string | undefined; icon?: string | undefined; collectionId: number; itemId: string; }; /** @internal */ export declare const EditCollectionItemRequest$outboundSchema: z.ZodType; export declare function editCollectionItemRequestToJSON(editCollectionItemRequest: EditCollectionItemRequest): string; //# sourceMappingURL=editcollectionitemrequest.d.ts.map