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