/** * Quick-fix code actions for Handlebars for Marketing Cloud Next (MCN). * * Offers "Did you mean …?" replacements for unknown helpers and unknown * `{!$...}` bindings, driven by the suggestion payload the MCN Handlebars * validator attaches to those diagnostics. */ import type { CodeAction, Diagnostic } from '../types.js'; /** * Return quick-fix code actions for MCN Handlebars diagnostics. * @param text - Full document text. * @param uri - Document URI. * @param diagnostics - Diagnostics to generate actions for. * @returns Array of code actions. */ export declare function getHandlebarsCodeActions(text: string, uri: string, diagnostics: Diagnostic[]): CodeAction[]; //# sourceMappingURL=mcnHandlebars.d.ts.map