import type { AFS } from "@aigne/afs"; import { AgentSkill } from "./agent-skill.js"; export interface Skill { path: string; name: string; description: string; content: string; } export declare function discoverSkillsFromAFS(afs: AFS): Promise; export declare function loadAgentSkillFromAFS({ afs, }: { afs: AFS; }): Promise;