import { z } from 'zod'; export type ModulePackage = { rootPath: string; moduleName?: string | undefined; }; export declare const modulePackage: z.ZodObject<{ rootPath: z.ZodString; moduleName: z.ZodOptional; }, z.core.$strip>; //# sourceMappingURL=modulePackage.generated.d.ts.map