import { type Plan } from "../runtime/plan.js"; import { type RecipePlanOptions } from "./shared.js"; /** * `scai provision recipe plan` — read-then-diff against a tenant, no mutations. * * Operates on a pre-compiled IR file (the artifact from `scai provision recipe * compile`). For the recipe-source workflow, use `scai provision recipe push * --what-if` instead — it compiles in-memory and runs the planner. */ export declare const runRecipePlan: (options: RecipePlanOptions) => Promise;