export interface SkillInstallResult { installed: boolean; platform: string | null; targetPath: string | null; } export declare function runSkillInstallStep(log: (msg: string) => void): Promise; export declare function refreshSkill(skillPath: string, log: (msg: string) => void): Promise<{ installed: boolean; targetPath: string | null; }>;