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 CreateConversationRequest = { /** * Initial items to include in the conversation context. Max 20 items at a time. */ items?: Array | undefined; /** * Set of 16 key-value pairs for storing additional information. */ metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const CreateConversationRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateConversationRequest$Outbound = { items?: Array | undefined; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const CreateConversationRequest$outboundSchema: z.ZodType; export declare function createConversationRequestToJSON(createConversationRequest: CreateConversationRequest): string; export declare function createConversationRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createconversationrequest.d.ts.map