import { z } from "zod"; //#region src/schemas/frontmatter.d.ts declare const BaseFrontmatterSchema: z.ZodObject<{ title: z.ZodString; description: z.ZodString; publishedDate: z.ZodCoercedDate; lastUpdatedOn: z.ZodOptional>; tags: z.ZodDefault>; draft: z.ZodDefault>; }, z.core.$loose>; type BaseFrontmatter = z.infer; declare const ProjectFrontmatterSchema: z.ZodObject<{ title: z.ZodString; description: z.ZodString; publishedDate: z.ZodCoercedDate; lastUpdatedOn: z.ZodOptional>; tags: z.ZodDefault>; draft: z.ZodDefault>; gitRepo: z.ZodOptional; links: z.ZodOptional>>; }, z.core.$loose>; type ProjectFrontmatter = z.infer; declare const BlogFrontmatterSchema: z.ZodObject<{ title: z.ZodString; description: z.ZodString; publishedDate: z.ZodCoercedDate; lastUpdatedOn: z.ZodOptional>; tags: z.ZodDefault>; draft: z.ZodDefault>; category: z.ZodOptional; featured: z.ZodOptional; coverImage: z.ZodOptional; }, z.core.$loose>; type BlogFrontmatter = z.infer; //#endregion export { ProjectFrontmatter as a, BlogFrontmatterSchema as i, BaseFrontmatterSchema as n, ProjectFrontmatterSchema as o, BlogFrontmatter as r, BaseFrontmatter as t }; //# sourceMappingURL=index-CphA0N9D.d.mts.map