import * as z from "zod"; import { AssetDeliveryType } from "./assetdeliverytype.js"; import { FetchDeliveryType } from "./fetchdeliverytype.js"; import { ManagedDeliveryType } from "./manageddeliverytype.js"; import { SocialDeliveryType } from "./socialdeliverytype.js"; /** * Delivery types accepted by the explicit operation. */ export type ExplicitDeliveryType = ManagedDeliveryType | AssetDeliveryType | FetchDeliveryType | SocialDeliveryType; export declare const ExplicitDeliveryType$zodSchema: z.ZodType; //# sourceMappingURL=explicitdeliverytype.d.ts.map