import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ConversationsCreateRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; createConversationRequest: components.CreateConversationRequest; }; /** @internal */ export declare const ConversationsCreateRequest$inboundSchema: z.ZodType; /** @internal */ export type ConversationsCreateRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; CreateConversationRequest: components.CreateConversationRequest$Outbound; }; /** @internal */ export declare const ConversationsCreateRequest$outboundSchema: z.ZodType; export declare function conversationsCreateRequestToJSON(conversationsCreateRequest: ConversationsCreateRequest): string; export declare function conversationsCreateRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=conversationscreate.d.ts.map