import { z } from "zod"; /** * A JSON representation of a ConversationRequestOptions instance. */ export declare const conversationRequestOptionsSchema: z.ZodObject<{ headers: z.ZodOptional>; proxy: z.ZodOptional; protocol: z.ZodOptional>; auth: z.ZodOptional>; }, "strip", z.ZodTypeAny, { host: string; port?: number | undefined; protocol?: "http" | "https" | undefined; auth?: { username: string; password: string; } | undefined; }, { host: string; port?: number | undefined; protocol?: "http" | "https" | undefined; auth?: { username: string; password: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { headers?: Record | undefined; proxy?: { host: string; port?: number | undefined; protocol?: "http" | "https" | undefined; auth?: { username: string; password: string; } | undefined; } | undefined; }, { headers?: Record | undefined; proxy?: { host: string; port?: number | undefined; protocol?: "http" | "https" | undefined; auth?: { username: string; password: string; } | undefined; } | undefined; }>; /** * A JSON representation of a ConversationRequestOptions instance. */ export type ConversationRequestOptionsModel = z.infer;