import type { ExtensionCommandContext } from "@mariozechner/pi-coding-agent"; /** * Find the file path for an agent by name, checking project then personal dirs. */ export declare function findAgentFile(name: string): { path: string; location: "project" | "personal"; } | undefined; /** * Show agent detail card with config info and action menu. * * @param ctx Extension command context * @param name Agent name to show details for */ export declare function showAgentDetail(ctx: ExtensionCommandContext, name: string): Promise;