import * as z from "zod/v3"; export type FileT = { fileName: string; content: ReadableStream | Blob | ArrayBuffer | Uint8Array; }; export type UploadChatFilesRequest = { /** * Raw files to be uploaded for chat in binary format. */ files: Array; }; /** @internal */ export type FileT$Outbound = { fileName: string; content: ReadableStream | Blob | ArrayBuffer | Uint8Array; }; /** @internal */ export declare const FileT$outboundSchema: z.ZodType; export declare function fileToJSON(fileT: FileT): string; /** @internal */ export type UploadChatFilesRequest$Outbound = { files: Array; }; /** @internal */ export declare const UploadChatFilesRequest$outboundSchema: z.ZodType; export declare function uploadChatFilesRequestToJSON(uploadChatFilesRequest: UploadChatFilesRequest): string; //# sourceMappingURL=uploadchatfilesrequest.d.ts.map