import { type SettingItem } from '@earendil-works/pi-tui'; import type { ManagedSkill, SkillProfile } from './manager.js'; export declare const ENABLED = "\u25CF enabled"; export declare const DISABLED = "\u25CB disabled"; export declare function sort_skills(skills: ManagedSkill[]): ManagedSkill[]; export declare function to_setting_item(skill: ManagedSkill): SettingItem; export declare function sets_equal(a: ReadonlySet, b: ReadonlySet): boolean; export declare function skill_status(skill: ManagedSkill): string; export declare function format_skill_detail(skill: ManagedSkill): string; export declare function format_skill_list(skills: ManagedSkill[]): string; export declare function find_skill(skills: ManagedSkill[], key_or_name: string): ManagedSkill; export declare function profile_description(profile: SkillProfile): string; export declare function format_profile_detail(profile: SkillProfile): string;