import type { TeamStatePaths } from "./state-paths.js"; import type { TeamConfig } from "./types.js"; /** * Read a team's config.json. Pure leaf read (no orchestration dependency) so * both the runtime and the api layer can import it without a cycle. */ export declare function loadTeamConfig(paths: TeamStatePaths): TeamConfig | undefined;