import type { InstallScope } from '../skills/agents.js'; import { type CommandAgentId } from './agents.js'; export type InstallCommandArgs = { source?: string; name?: string; agent?: CommandAgentId; scope?: InstallScope; force: boolean; yes: boolean; help: boolean; noImprovementSkill: boolean; }; export declare function runInstallCommand(argv: string[]): Promise;