/** * Environment reference resolution — maps a string name to a concrete * `EnvironmentConfig` using the project-level `environments` map. */ import type { EnvironmentConfig } from "../eval/types.js"; /** * Resolve an environment reference to a concrete `EnvironmentConfig`. * * - `undefined` → `undefined` * - An inline `EnvironmentConfig` object → returned as-is * - A string name → looked up in `environments`; throws if not found * (with a fuzzy "did you mean?" suggestion when possible). */ export declare function resolveEnvironment(ref: string | EnvironmentConfig | undefined, environments: Record): EnvironmentConfig | undefined; //# sourceMappingURL=environment.d.ts.map