import { ImageLegacyViewSchema } from "./legacy/image.js"; import { z } from "zod/mini"; //#region src/content/image.d.ts type ImageContentView = z.infer; declare const ImageContentSchema: z.ZodMiniObject<{ origin: z.ZodMiniObject<{ id: z.ZodMiniString; url: z.ZodMiniString; width: z.ZodMiniNumber; height: z.ZodMiniNumber; }, z.core.$strip>; width: z.ZodMiniNumber; height: z.ZodMiniNumber; edit: z.ZodMiniObject<{ zoom: z.ZodMiniNumber; crop: z.ZodMiniObject<{ x: z.ZodMiniNumber; y: z.ZodMiniNumber; }, z.core.$strip>; background: z.ZodMiniString; }, z.core.$strip>; url: z.ZodMiniOptional>; credits: z.ZodMiniOptional>>, z.ZodMiniTransform>>; alt: z.ZodMiniOptional>>, z.ZodMiniTransform>>; provider: z.ZodMiniOptional>>; thumbnails: z.ZodMiniOptional, z.ZodMiniObject<{ origin: z.ZodMiniObject<{ id: z.ZodMiniString; url: z.ZodMiniString; width: z.ZodMiniNumber; height: z.ZodMiniNumber; }, z.core.$strip>; width: z.ZodMiniNumber; height: z.ZodMiniNumber; edit: z.ZodMiniObject<{ zoom: z.ZodMiniNumber; crop: z.ZodMiniObject<{ x: z.ZodMiniNumber; y: z.ZodMiniNumber; }, z.core.$strip>; background: z.ZodMiniString; }, z.core.$strip>; url: z.ZodMiniOptional>; credits: z.ZodMiniOptional>>, z.ZodMiniTransform>>; alt: z.ZodMiniOptional>>, z.ZodMiniTransform>>; provider: z.ZodMiniOptional>>; }, z.core.$strip>>>; __TYPE__: z.ZodMiniLiteral<"ImageContent">; }, z.core.$strip>; type ImageContent = z.infer; //#endregion export { ImageContent, ImageContentView }; //# sourceMappingURL=image.d.ts.map