import type { RecipePlan } from "../../sync/index.js"; import type { AgentRecipe } from "./agent.schema.js"; /** Diff a desired agent recipe against captured current state. */ export declare const diffAgent: (desired: AgentRecipe, current: AgentRecipe | null) => RecipePlan;