import { z } from 'zod'; /** * Schema for subscribing to a feed */ export declare const subscribeSchema: z.ZodObject<{ url: z.ZodString; title: z.ZodOptional; category: z.ZodOptional; }, "strict", z.ZodTypeAny, { url: string; category?: string | undefined; title?: string | undefined; }, { url: string; category?: string | undefined; title?: string | undefined; }>; /** * Schema for unsubscribing from a feed */ export declare const unsubscribeSchema: z.ZodObject<{ feedId: z.ZodString; }, "strict", z.ZodTypeAny, { feedId: string; }, { feedId: string; }>; /** * Schema for editing a feed */ export declare const editFeedSchema: z.ZodObject<{ feedId: z.ZodString; title: z.ZodOptional; category: z.ZodOptional; }, "strict", z.ZodTypeAny, { feedId: string; category?: string | undefined; title?: string | undefined; }, { feedId: string; category?: string | undefined; title?: string | undefined; }>; export declare const exportOpmlSchema: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>; export declare const importOpmlSchema: z.ZodObject<{ opml: z.ZodString; }, "strict", z.ZodTypeAny, { opml: string; }, { opml: string; }>; export declare const quickaddSchema: z.ZodObject<{ url: z.ZodString; }, "strict", z.ZodTypeAny, { url: string; }, { url: string; }>; //# sourceMappingURL=feed-tools.d.ts.map