import { type EnvVarDefinition } from "@berkayorhan/stackkit-schemas"; export type NormalizedEnvVar = { name: string; description: string; required: boolean; example?: string; target: "root" | "web" | "api" | "db"; }; export declare const envTargets: readonly ["root", "web", "api", "db"]; export declare function normalizeEnvVars(envVars: readonly EnvVarDefinition[]): NormalizedEnvVar[]; export declare function isCompatibleEnvVar(left: NormalizedEnvVar, right: NormalizedEnvVar): boolean; export declare function envTargetOrder(target: NormalizedEnvVar["target"]): number; export declare function envTargetLabel(target: NormalizedEnvVar["target"]): string; export declare function renderEnvExampleContent(envVars: readonly NormalizedEnvVar[]): string; //# sourceMappingURL=env.d.ts.map