import type { Skill } from "@mariozechner/pi-coding-agent"; import type { SophiaClawSkillMetadata, ParsedSkillFrontmatter, SkillEntry, SkillInvocationPolicy } from "./types.js"; export declare function parseFrontmatter(content: string): ParsedSkillFrontmatter; export declare function resolveSophiaClawMetadata(frontmatter: ParsedSkillFrontmatter): SophiaClawSkillMetadata | undefined; export declare function resolveSkillInvocationPolicy(frontmatter: ParsedSkillFrontmatter): SkillInvocationPolicy; export declare function resolveSkillKey(skill: Skill, entry?: SkillEntry): string;