import { z } from 'zod'; export declare const generator: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional; dependencies: z.ZodArray; sourceUrl: z.ZodString; registryUrl: z.ZodString; readme: z.ZodString; scope: z.ZodString; packageName: z.ZodString; createdAt: z.ZodString; }, z.core.$strip>; export type Generator = { id: string; name: string; description?: string | undefined; dependencies: Array; sourceUrl: string; registryUrl: string; readme: string; scope: string; packageName: string; createdAt: string; }; //# sourceMappingURL=generator.generated.d.ts.map