import { type OperationIr } from "../ir/operations.js"; import { type DesignParametersTemplateRecipe } from "../schema/recipe.js"; import { type CompileContext } from "./shared.js"; /** * Compile a standalone `DesignParametersTemplateRecipe` to an Operation IR. * * Lands at * `/
/Presentation Parameters/` — * mirrors the layout that the synthesised inline parameters template * uses, so a standalone recipe and an inline-hoisted one occupy the * same Sitecore path. */ export declare function compileDesignParametersTemplateRecipe(input: DesignParametersTemplateRecipe, context: CompileContext, emittedFolders?: Set): OperationIr;