export declare const AGENT_ALIASES: Record; export declare const SUBAGENT_NAMES: readonly ["explorer", "librarian", "oracle", "designer", "fixer", "observer", "council", "councillor"]; export declare const ORCHESTRATOR_NAME: "orchestrator"; export declare const ALL_AGENT_NAMES: readonly ["orchestrator", "explorer", "librarian", "oracle", "designer", "fixer", "observer", "council", "councillor"]; export type AgentName = (typeof ALL_AGENT_NAMES)[number]; export declare const ORCHESTRATABLE_AGENTS: readonly ["explorer", "librarian", "oracle", "designer", "fixer", "observer", "council"]; /** Agents that cannot be disabled even if listed in disabled_agents config. */ export declare const PROTECTED_AGENTS: Set; /** * Get the list of orchestratable agents, excluding any disabled agents. * This is used for delegation validation at runtime. */ export declare function getOrchestratableAgents(disabledAgents?: Set): string[]; export declare const SUBAGENT_DELEGATION_RULES: Record; export declare const DEFAULT_MODELS: Record; export declare const POLL_INTERVAL_MS = 500; export declare const POLL_INTERVAL_SLOW_MS = 1000; export declare const POLL_INTERVAL_BACKGROUND_MS = 2000; export declare const DEFAULT_TIMEOUT_MS: number; export declare const MAX_POLL_TIME_MS: number; export declare const FALLBACK_FAILOVER_TIMEOUT_MS = 15000; export declare const DEFAULT_MAX_SUBAGENT_DEPTH = 3; export declare const PHASE_REMINDER_TEXT = "!IMPORTANT! Recall the workflow rules:\nUnderstand \u2192 choose the best parallelized path based on your capabilities and agents delegation rules \u2192 recall session reuse rules \u2192 execute \u2192 verify.\nIf delegating, launch the specialist in the same turn you mention it !END!"; export declare const TMUX_SPAWN_DELAY_MS = 500; export declare const COUNCILLOR_STAGGER_MS = 250; export declare const STABLE_POLLS_THRESHOLD = 3; /** Agents that are disabled by default. Users must explicitly enable them * by removing from disabled_agents and configuring an appropriate model. */ export declare const DEFAULT_DISABLED_AGENTS: string[];