import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Chat } from "./chat.js"; export type ChatResult = { /** * A historical representation of a series of chat messages a user had with Glean Assistant. */ chat?: Chat | undefined; /** * An opaque token that represents this particular Chat. To be used for `/feedback` reporting. */ trackingToken?: string | undefined; }; /** @internal */ export declare const ChatResult$inboundSchema: z.ZodType; export declare function chatResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=chatresult.d.ts.map