import type { SubagentManager } from '../subagent.js'; import type { BackgroundAgentRegistry } from '../background-registry.js'; export interface SubagentsLite { active: Array<{ id: string; status: 'idle' | 'running' | 'succeeded' | 'failed' | 'cancelled'; }>; backgroundJobs: Array<{ jobId: string; status: 'running' | 'completed' | 'failed' | 'cancelled'; startedAt: string; label: string | null; }>; } export declare function buildSubagentsLite(subagentManager: SubagentManager, backgroundRegistry: BackgroundAgentRegistry | undefined): SubagentsLite;