/** * commands/templates.ts — Register the /agents templates subcommand. * * Provides: /agents templates — interactive menu to browse, install, * update, and remove agent templates from the built-in registry. */ import type { ExtensionAPI, ExtensionCommandContext } from "@earendil-works/pi-coding-agent"; export declare function registerTemplatesCommand(pi: ExtensionAPI): void; export declare function showTemplatesMenu(ctx: ExtensionCommandContext): Promise;