/** * Team template definitions — predefined agent roles and lead instructions. */ import type { TeamConfig, AgentsDefMap } from './team-types.js'; /** * Build the agents definition JSON for the --agents CLI flag. */ export declare function buildAgentsDef(template?: string): AgentsDefMap; /** * Build the lead prompt that instructs the Lead to use Agent tool. */ export declare function buildLeadPrompt(config: TeamConfig, agentsDef: AgentsDefMap): string;