export interface SkillInstallOptions { cwd?: string; root?: string; source: string; scope?: 'project' | 'user'; dryRun?: boolean; userSkillsRoot?: string; } export interface SkillInstallResult { ok: boolean; dryRun: boolean; skillName: string; displayName: string; sourceDir: string; targetDir: string; files: string[]; } export declare function installSkill(options: SkillInstallOptions): SkillInstallResult; export declare function formatSkillInstall(result: SkillInstallResult): string;