import type { SkillCommandArgs } from "../types/skill.js"; export interface SkillCommandOptions { workspace?: string; configDir?: string; } /** * Execute the skill command * This is the handler for: wingman skill [args] */ export declare function executeSkillCommand(args: SkillCommandArgs, options?: SkillCommandOptions): Promise;