import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * Fetch-based delivery types for assets retrieved from remote URLs. */ export declare const FetchDeliveryType: { readonly Fetch: "fetch"; readonly Url2png: "url2png"; }; /** * Fetch-based delivery types for assets retrieved from remote URLs. */ export type FetchDeliveryType = ClosedEnum; export declare const FetchDeliveryType$zodSchema: z.ZodEnum<{ fetch: "fetch"; url2png: "url2png"; }>; //# sourceMappingURL=fetchdeliverytype.d.ts.map