import { Skill } from '../skills.js'; import { TransformResult } from './types.js'; /** * Transform a skill into Gemini CLI skill format. * Each skill becomes a directory with SKILL.md inside skills// * Format: frontmatter with name + description, then markdown body. */ export declare function transformForGemini(skill: Skill): TransformResult[]; /** * Legacy: generate a flat GEMINI.md section for older Gemini CLI versions. * Used as a fallback when the skills directory approach isn't available. */ export declare function transformForGeminiLegacy(skills: Skill[]): string;