import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { AssetDeliveryType } from "./assetdeliverytype.js"; import { FetchDeliveryType } from "./fetchdeliverytype.js"; import { GeneratedDeliveryType } from "./generateddeliverytype.js"; import { ManagedDeliveryType } from "./manageddeliverytype.js"; import { SocialDeliveryType } from "./socialdeliverytype.js"; export declare const DeliveryTypeAllEnum: { readonly MediaOptimization: "media_optimization"; }; export type DeliveryTypeAllEnum = ClosedEnum; export declare const DeliveryTypeAllEnum$zodSchema: z.ZodEnum<{ media_optimization: "media_optimization"; }>; /** * All supported delivery types. */ export type DeliveryTypeAll = ManagedDeliveryType | AssetDeliveryType | FetchDeliveryType | SocialDeliveryType | GeneratedDeliveryType | DeliveryTypeAllEnum; export declare const DeliveryTypeAll$zodSchema: z.ZodType; //# sourceMappingURL=deliverytypeall.d.ts.map