/** * JSON adapter for subagent rendering. * * For: Kiro CLI. * Emits the user's frontmatter keys as a JSON object and the body as the * `prompt` field. `agentOverrides[kiro]` 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 JSON for Kiro CLI. * * @experimental This API is unstable and may change without notice. */ export declare const renderJson: (input: SubagentRenderInput) => SubagentRenderOutcome; //# sourceMappingURL=json.d.ts.map