import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; /** * Current status of the file. */ export declare const ChatFileStatus: { readonly Processing: "PROCESSING"; readonly Processed: "PROCESSED"; readonly PartiallyProcessed: "PARTIALLY_PROCESSED"; readonly Failed: "FAILED"; readonly Deleted: "DELETED"; }; /** * Current status of the file. */ export type ChatFileStatus = OpenEnum; /** @internal */ export declare const ChatFileStatus$inboundSchema: z.ZodType; /** @internal */ export declare const ChatFileStatus$outboundSchema: z.ZodType; //# sourceMappingURL=chatfilestatus.d.ts.map