export interface InstallFromPathBody { path: string; scope?: "global" | "workspace"; workspace?: string; } export interface InstallFromPathResult { success: true; data: { installDir: string; name: string; }; } export declare function handleInstallSkillFromPath(body: InstallFromPathBody): Promise;