/** * Skills version tracking. * * CAAMP's skills-lock is the exclusive source of truth for skill versions. * * @epic T4454 * @task T4521 * @task T4680 */ /** * Get the installed version of a skill from CAAMP lock state. */ export declare function getInstalledVersionAsync(name: string): Promise; /** * Check if a specific skill needs an update via CAAMP. */ export declare function checkSkillUpdateAsync(name: string): Promise<{ needsUpdate: boolean; currentVersion?: string; latestVersion?: string; }>; /** * Check all installed skills for available updates via CAAMP. */ export declare function checkAllSkillUpdatesAsync(): Promise>; //# sourceMappingURL=version.d.ts.map