import type { ExtensionCommandContext } from "@earendil-works/pi-coding-agent"; import type { AgentManager } from "../agent-manager.js"; import type { ModelRegistry } from "../model-resolver.js"; import type { AgentActivity } from "./agent-ui-types.js"; export declare function showAllAgentsList(ctx: ExtensionCommandContext, modelRegistry?: ModelRegistry): Promise; export declare function showRunningAgents(ctx: ExtensionCommandContext, manager: AgentManager, agentActivity: Map): Promise;