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 declare function findInstalledSkills(projectDir: string): string[]; export interface StaleSkill { dir: string; targetPath: string; } export declare function findStaleSkills(projectDir: string): Promise;