/** * Medical team builder (Phase 6, Sprint 1). * * buildMedicalTeam returns the built-in 'medical' Team with pipelineShape * 'medical-sop' and a concrete (stub) GuardrailSet in the guardrails slot. * Real GuardrailSet.evaluate logic lands in S3. */ import type { BoberConfig } from "../config/schema.js"; import type { Team } from "../teams/types.js"; /** * Builds the built-in 'medical' Team. * Registered in loadTeam (registry.ts) before the config.teams lookup. */ export declare function buildMedicalTeam(config: BoberConfig): Team; //# sourceMappingURL=team.d.ts.map