/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net */ /** * @module plugins/backspace */ import type { IJodit } from "../../../types/index"; /** * Try join two UL elements * * @example * ```html * |
  1. two
* ``` * Result * ```html * * ``` * @private */ export declare function checkJoinTwoLists(jodit: IJodit, fakeNode: Node, backspace: boolean): boolean;