/** * @module * Editing UI for `html:` blocks — a key/value attribute table. * * Previously this lived inside `createHtmlHandler(emmetAbbr)` and could have * closed over the parsed Emmet abbreviation (tag/type). It never did: the * editor only ever read `attrs` and reported back through `onCommit`, so * moving it out to a single standalone editor shared by every `html:*` block * type loses no behaviour. If a future revision needs the element tag, note * that a `BlockEditor` is not given the block type string — it would have to * come from `attrs` or from registering a distinct editor per type. */ import type { BlockEditor } from "./editor.type.js"; /** Editing UI for `html:` blocks — an editable attribute key/value table. */ export declare const htmlEditor: BlockEditor; //# sourceMappingURL=html.editor.d.ts.map