import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ChatFile } from "./chatfile.js"; export type UploadChatFilesResponse = { /** * Files uploaded for chat. */ files?: Array | undefined; }; /** @internal */ export declare const UploadChatFilesResponse$inboundSchema: z.ZodType; export declare function uploadChatFilesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=uploadchatfilesresponse.d.ts.map