import * as z from "zod/v3"; import * as components from "../components/index.js"; export type ChatStreamRequest = { /** * The offset of the client's timezone in minutes from UTC. e.g. PDT is -420 because it's 7 hours behind UTC. */ timezoneOffset?: number | undefined; /** * Includes chat history for Glean AI to respond to. */ chatRequest: components.ChatRequest; }; /** @internal */ export type ChatStreamRequest$Outbound = { timezoneOffset?: number | undefined; ChatRequest: components.ChatRequest$Outbound; }; /** @internal */ export declare const ChatStreamRequest$outboundSchema: z.ZodType; export declare function chatStreamRequestToJSON(chatStreamRequest: ChatStreamRequest): string; //# sourceMappingURL=chatstream.d.ts.map