import type { LoadedSkill, SkillMeta } from "./types.js"; export declare const SKILLS_CATALOG_PREFIX = "AVAILABLE SKILLS"; export declare const ACTIVE_SKILLS_PREFIX = "ACTIVE SKILLS"; export declare function rankSkills(prompt: string, skills: readonly SkillMeta[], pinned?: readonly string[]): SkillMeta[]; export declare function renderSkillCatalog(input: { readonly skills: readonly SkillMeta[]; readonly prompt: string; readonly pinned?: readonly string[] | undefined; readonly truncatedScan?: boolean | undefined; readonly maxTokens?: number | undefined; }): string | undefined; export declare function renderActiveSkills(loaded: readonly LoadedSkill[]): string | undefined; export { renderSkillListing } from "./format.js";