import type { ExtensionCommandContext } from "@earendil-works/pi-coding-agent"; import type { AgentConfig } from "../types.js"; /** Eject a default agent: write its embedded config as a .md file. */ export declare function ejectAgent(ctx: ExtensionCommandContext, name: string, cfg: AgentConfig): Promise; /** Disable an agent: set enabled: false in its .md file, or create a stub for built-in defaults. */ export declare function disableAgent(ctx: ExtensionCommandContext, name: string): Promise; /** Enable a disabled agent by removing enabled: false from its frontmatter. */ export declare function enableAgent(ctx: ExtensionCommandContext, name: string): Promise;