import { z } from "zod/mini"; //#region src/content/legacy/link.d.ts declare const FilledImageLinkLegacyValueSchema: z.ZodMiniObject<{ kind: z.ZodMiniPipe, z.ZodMiniTransform<"image", string>>; id: z.ZodMiniString; url: z.ZodMiniString; height: z.ZodMiniString; width: z.ZodMiniString; size: z.ZodMiniString; name: z.ZodMiniString; date: z.ZodMiniOptional>>; }, z.core.$strip>; declare const FilledFileLinkLegacyValueSchema: z.ZodMiniObject<{ kind: z.ZodMiniPipe, z.ZodMiniTransform<"file", string>>; id: z.ZodMiniString; url: z.ZodMiniString; name: z.ZodMiniString; size: z.ZodMiniTransform; date: z.ZodMiniOptional>>; }, z.core.$strip>; declare const FilledDocumentLinkLegacyValueSchema: z.ZodMiniObject<{ kind: z.ZodMiniPipe>, z.ZodMiniTransform<"document", "document" | undefined>>; id: z.ZodMiniString; }, z.core.$strip>; declare const FilledExternalLinkLegacyValueSchema: z.ZodMiniObject<{ kind: z.ZodMiniPipe>, z.ZodMiniTransform<"web", "web" | undefined>>; url: z.ZodMiniString; target: z.ZodMiniOptional>>; preview: z.ZodMiniOptional>; }, z.core.$strict>>>; }, z.core.$strip>; type FilledImageLinkLegacyValue = z.infer; type FilledFileLinkLegacyValue = z.infer; type FilledDocumentLinkLegacyValue = z.infer; type FilledExternalLinkLegacyValue = z.infer; type FilledLinkLegacyValue = FilledImageLinkLegacyValue | FilledFileLinkLegacyValue | FilledDocumentLinkLegacyValue | FilledExternalLinkLegacyValue; //#endregion export { FilledLinkLegacyValue }; //# sourceMappingURL=link.d.ts.map