/** * Team registry + resolver (Phase 4, Sprint 1). * * loadTeam(config, teamId?) returns a resolved Team. With no id (or 'programming') * it returns the built-in programming team, reproducing today's provider routing * (resolveRoleProviders), engine (resolveEngineName), and memory path (sentinel ''). */ import type { BoberConfig } from "../config/schema.js"; import type { Team } from "./types.js"; /** * Resolve a Team from config. With no id (or id === 'programming') returns the * built-in programming team. A config-declared team is built from its entry with * partial provider overrides merged over the resolved defaults. An unknown id throws. */ export declare function loadTeam(config: BoberConfig, teamId?: string): Team; //# sourceMappingURL=registry.d.ts.map