import { type InstallScope } from './agents.js'; export type InstallBundledSkillResult = { skillName: string; targetPath: string; targetRoot: string; }; export declare function installBundledSkill(options: { skillName: string; agent: string; scope: InstallScope; force: boolean; }): Promise;