/** * TOML adapter for subagent rendering. * * For: Codex. * Emits the user's frontmatter keys as TOML key=value pairs and the body * as the `developer_instructions` field. `agentOverrides[codex]` 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 TOML for Codex. * * @experimental This API is unstable and may change without notice. */ export declare const renderToml: (input: SubagentRenderInput) => SubagentRenderOutcome; //# sourceMappingURL=toml.d.ts.map