import type { CategoryConfig } from "./types"; export declare const DEFAULT_CATEGORIES: Record; export declare const CATEGORY_NAMES: string[]; /** * Maximum allowed delegation depth. Prevents recursive delegation chains * where agents delegate to sub-agents that delegate further. * * Level 0: User → Orchestrator (can delegate) * Level 1: Orchestrator → Specialist (can delegate) * Level 2: Specialist → Sub-agent (CANNOT delegate further) */ export declare const MAX_DELEGATION_DEPTH = 2;