import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * Delivery types for assets fetched from third-party platforms. */ export declare const SocialDeliveryType: { readonly Facebook: "facebook"; readonly Twitter: "twitter"; readonly TwitterName: "twitter_name"; readonly Instagram: "instagram"; readonly InstagramName: "instagram_name"; readonly Gravatar: "gravatar"; readonly Youtube: "youtube"; readonly Hulu: "hulu"; readonly Vimeo: "vimeo"; readonly Animoto: "animoto"; readonly Dailymotion: "dailymotion"; readonly Worldstarhiphop: "worldstarhiphop"; }; /** * Delivery types for assets fetched from third-party platforms. */ export type SocialDeliveryType = ClosedEnum; export declare const SocialDeliveryType$zodSchema: z.ZodEnum<{ facebook: "facebook"; twitter: "twitter"; twitter_name: "twitter_name"; instagram: "instagram"; instagram_name: "instagram_name"; gravatar: "gravatar"; youtube: "youtube"; hulu: "hulu"; vimeo: "vimeo"; animoto: "animoto"; dailymotion: "dailymotion"; worldstarhiphop: "worldstarhiphop"; }>; //# sourceMappingURL=socialdeliverytype.d.ts.map