import type { Action, ExtensionAuto } from "../../../core/index.js"; import { type DeflistSpecsOptions } from "./DeflistSpecs/index.js"; import { dlAction } from "./const.js"; export { DeflistNode, defListType, defTermType, defDescType } from "./DeflistSpecs/index.js"; export type DeflistOptions = DeflistSpecsOptions & {}; export declare const Deflist: ExtensionAuto; declare global { namespace WysiwygEditor { interface Actions { [dlAction]: Action; } } }