import type { Skill } from '../../../types/plugins/skills.js'; type ParseSkillInput = { slug: string; fsPath: string; content: string; }; type ParseSkillError = { error: string; }; /** * @param input - the skill slug, its project-relative path, and the raw file content * @returns the parsed `Skill` with a `sha256:` digest over the raw content, * or a `{ error }` object when the frontmatter is invalid or the required * `name`/`description` fields are missing */ export declare function parseSkill(input: ParseSkillInput): Skill | ParseSkillError; export {}; //# sourceMappingURL=parse-skill.d.ts.map