import type { AgentConfig } from "../api/schema.js"; import type { AgentsSession } from "../session/types.js"; import type { RecipeKind } from "../../sync/index.js"; import { type AgentRecipe } from "./agent.schema.js"; /** * Build an `AgentConfig` from a recipe, resolving skill slugs to ids * against the live `/api/skills` catalog. Shared by the recipe `apply` * path and the imperative `scai agents agent create|update` runners. */ export declare const buildAgentConfig: (session: AgentsSession, recipe: AgentRecipe) => Promise; /** The `agent` recipe kind. */ export declare const agentKind: RecipeKind;