import { z } from 'zod'; /** * Monorepo settings schema * * Configures the folder structure for monorepo apps and libraries. */ export declare const monorepoSettingsSchema: z.ZodObject<{ appsFolder: z.ZodDefault; librariesFolder: z.ZodDefault; }, z.core.$strip>; /** * Input type for monorepo settings (before Zod transformation) */ export type MonorepoSettingsInput = z.input; /** * Output type for monorepo settings (after Zod transformation and defaults applied) */ export type MonorepoSettingsDefinition = z.output; //# sourceMappingURL=monorepo.d.ts.map