import { z } from 'astro/zod'; export declare const rssSchema: z.ZodObject<{ title: z.ZodOptional; description: z.ZodOptional; pubDate: z.ZodEffects>, Date | undefined, string | number | Date | undefined>, Date | undefined, string | number | Date | undefined>; customData: z.ZodOptional; categories: z.ZodOptional>; author: z.ZodOptional; commentsUrl: z.ZodOptional; source: z.ZodOptional>; enclosure: z.ZodOptional>; link: z.ZodOptional; content: z.ZodOptional; }, "strip", z.ZodTypeAny, { title?: string | undefined; description?: string | undefined; pubDate?: Date | undefined; customData?: string | undefined; categories?: string[] | undefined; author?: string | undefined; commentsUrl?: string | undefined; source?: { title: string; url: string; } | undefined; enclosure?: { length: number; type: string; url: string; } | undefined; link?: string | undefined; content?: string | undefined; }, { title?: string | undefined; description?: string | undefined; pubDate?: string | number | Date | undefined; customData?: string | undefined; categories?: string[] | undefined; author?: string | undefined; commentsUrl?: string | undefined; source?: { title: string; url: string; } | undefined; enclosure?: { length: number; type: string; url: string; } | undefined; link?: string | undefined; content?: string | undefined; }>;