import { z } from 'zod'; /** * Infrastructure settings schema * * Configures optional infrastructure services for the project. * These services are shared across all backend applications in the monorepo. * * Note: PostgreSQL is always enabled for backend apps and doesn't require configuration. * Port is calculated as portOffset + 432 (e.g., 3000 → 3432). * Password defaults to "{projectName}-password" and database defaults to project name. */ export declare const infrastructureSettingsSchema: z.ZodObject<{ redis: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; /** * Input type for infrastructure settings (before Zod transformation) */ export type InfrastructureSettingsInput = z.input; /** * Output type for infrastructure settings (after Zod transformation and defaults applied) */ export type InfrastructureSettingsDefinition = z.output; //# sourceMappingURL=infrastructure.d.ts.map