import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * The type of resource to upload: * * @remarks * - "image" for uploading strictly images * - "video" for uploading strictly videos * - "raw" for uploading non-media files * - "auto" for allowing Cloudinary to automatically detect the type of the uploaded file */ export declare const UploadResourceType: { readonly Image: "image"; readonly Video: "video"; readonly Raw: "raw"; readonly Auto: "auto"; }; /** * The type of resource to upload: * * @remarks * - "image" for uploading strictly images * - "video" for uploading strictly videos * - "raw" for uploading non-media files * - "auto" for allowing Cloudinary to automatically detect the type of the uploaded file */ export type UploadResourceType = ClosedEnum; export declare const UploadResourceType$zodSchema: z.ZodEnum<{ auto: "auto"; image: "image"; video: "video"; raw: "raw"; }>; //# sourceMappingURL=uploadresourcetype.d.ts.map