import * as z from "zod/v3"; export type DeleteCollectionItemRequest = { /** * The ID of the Collection to remove an item in. */ collectionId: number; /** * The item ID of the CollectionItem to remove from this Collection. */ itemId: string; /** * The (optional) Glean Document ID of the CollectionItem to remove from this Collection if this is an indexed document. */ documentId?: string | undefined; }; /** @internal */ export type DeleteCollectionItemRequest$Outbound = { collectionId: number; itemId: string; documentId?: string | undefined; }; /** @internal */ export declare const DeleteCollectionItemRequest$outboundSchema: z.ZodType; export declare function deleteCollectionItemRequestToJSON(deleteCollectionItemRequest: DeleteCollectionItemRequest): string; //# sourceMappingURL=deletecollectionitemrequest.d.ts.map