import { BaseCommand } from '../baseCommand'; export declare const SKILL_FILE_PATH: string; export declare const PLATFORM_TARGETS: Record; export declare function readSkillFile(): Promise; export declare function writeSkillToTarget(targetDir: string, content: string): Promise; export declare function formatPlatformName(platform: string): string; export declare function promptForPlatformTarget(onCancel?: () => void): Promise; export default class SkillsInstall extends BaseCommand { static hidden: boolean; static idempotent: boolean; static description: string; static flags: { target: import("@oclif/core/interfaces").OptionFlag; path: import("@oclif/core/interfaces").OptionFlag; force: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; private readSkillFile; private resolveTarget; private promptForTarget; private installSkill; private confirmOverwrite; }