import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * The type of resources to include in the archive. "image" for images, "video" for videos, "raw" for non-media files, or "all" for mixed types. */ export declare const ArchiveResourceType: { readonly Image: "image"; readonly Video: "video"; readonly Raw: "raw"; readonly All: "all"; }; /** * The type of resources to include in the archive. "image" for images, "video" for videos, "raw" for non-media files, or "all" for mixed types. */ export type ArchiveResourceType = ClosedEnum; export declare const ArchiveResourceType$zodSchema: z.ZodEnum<{ all: "all"; image: "image"; video: "video"; raw: "raw"; }>; //# sourceMappingURL=archiveresourcetype.d.ts.map