import { type InstallTarget } from '../utils/config.js'; /** * install 命令实现 - 安装 Skill 文件并准备 alipay-cli 环境。 */ export interface InstallCommandOptions { target?: InstallTarget; skipTools?: boolean; } export declare function installCommand(cwd: string, options?: InstallCommandOptions): Promise; //# sourceMappingURL=install.d.ts.map