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 GetChatFilesResponse = { /** * A map of file IDs to ChatFile structs. */ files?: { [k: string]: ChatFile; } | undefined; }; /** @internal */ export declare const GetChatFilesResponse$inboundSchema: z.ZodType; export declare function getChatFilesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getchatfilesresponse.d.ts.map