import { z } from 'zod'; /** * General project settings schema * * Includes basic project configuration like name, package scope, and port offset. */ export declare const generalSettingsSchema: z.ZodObject<{ name: z.ZodString; packageScope: z.ZodDefault; portOffset: z.ZodNumber; }, z.core.$strip>; /** * Input type for general settings (before Zod transformation) */ export type GeneralSettingsInput = z.input; /** * Output type for general settings (after Zod transformation and defaults applied) */ export type GeneralSettingsDefinition = z.output; //# sourceMappingURL=general.d.ts.map