/** * Markdown + YAML frontmatter adapter for subagent rendering. * * For: Claude Code, Copilot, Cursor, Gemini CLI, OpenCode, Augment, * Junie, Kilo Code, Kiro IDE. * * Produces `.md` with YAML frontmatter and body. The user's frontmatter * passes through verbatim; `agentOverrides[]` is merged on top. * * @experimental This API is unstable and may change without notice. */ import { type SubagentRenderInput, type SubagentRenderOutcome } from "../types.js"; /** * Render a subagent as Markdown with YAML frontmatter. * * @experimental This API is unstable and may change without notice. */ export declare const renderMarkdownYaml: (input: SubagentRenderInput) => SubagentRenderOutcome; //# sourceMappingURL=markdown-yaml.d.ts.map