import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ConversationsDeleteRequest = { conversationId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ConversationsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type ConversationsDeleteRequest$Outbound = { conversation_id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ConversationsDeleteRequest$outboundSchema: z.ZodType; export declare function conversationsDeleteRequestToJSON(conversationsDeleteRequest: ConversationsDeleteRequest): string; export declare function conversationsDeleteRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=conversationsdelete.d.ts.map