import { z } from "zod"; export declare const PluginIdSchema: z.ZodString; export declare const PluginRequirementsSchema: z.ZodObject<{ paseo: z.ZodOptional; }, z.core.$strip>; export type PluginRequirements = z.infer; export declare const DirectoryPluginSourceSchema: z.ZodObject<{ source: z.ZodLiteral<"directory">; path: z.ZodString; enabled: z.ZodOptional; }, z.core.$strict>; export declare const PluginSourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ source: z.ZodLiteral<"directory">; path: z.ZodString; enabled: z.ZodOptional; }, z.core.$strict>], "source">; export type PluginSource = z.infer; //# sourceMappingURL=plugin-config.d.ts.map