import type { ExtensionCommandContext } from '@earendil-works/pi-coding-agent'; import type { ManagedSkill, SkillsManager } from '../manager.js'; export declare function pick_skill(ctx: ExtensionCommandContext, options: { title: string; subtitle: string; skills: ManagedSkill[]; empty_message: string; }): Promise; export declare function show_skill_detail_modal(ctx: ExtensionCommandContext, skill: ManagedSkill): Promise; export declare function show_skill_list_modal(ctx: ExtensionCommandContext, mgr: SkillsManager): Promise;