import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ChatResult } from "./chatresult.js"; export type GetChatResponse = { chatResult?: ChatResult | undefined; }; /** @internal */ export declare const GetChatResponse$inboundSchema: z.ZodType; export declare function getChatResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getchatresponse.d.ts.map