import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Item, Item$Outbound } from "./item.js"; export type CreateItemsRequest = { /** * Items to add to the conversation. Min 1, max 20 items at a time. */ items: Array; /** * Additional fields to include (TODO: not implemented yet) */ include?: Array | undefined; }; /** @internal */ export declare const CreateItemsRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateItemsRequest$Outbound = { items: Array; include?: Array | undefined; }; /** @internal */ export declare const CreateItemsRequest$outboundSchema: z.ZodType; export declare function createItemsRequestToJSON(createItemsRequest: CreateItemsRequest): string; export declare function createItemsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createitemsrequest.d.ts.map