import { z } from "zod"; export declare const pluginDescriptorSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodString; entry: z.ZodString; exclusive: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; id: string; description: string; entry: string; exclusive?: boolean | undefined; }, { name: string; id: string; description: string; entry: string; exclusive?: boolean | undefined; }>; export type PluginDescriptor = z.infer; //# sourceMappingURL=descriptor.d.ts.map