import type { SlateEditor } from '@udecode/plate-common'; import type { NodeEntry } from 'slate'; import { Node } from 'slate'; import type { ListsSchema } from '../types'; /** * If there is a nested "list" inside a "list-item" without a "list-item-text" * unwrap that nested "list" and try to nest it in previous sibling "list-item". */ export declare function normalizeOrphanNestedList(editor: SlateEditor, schema: ListsSchema, [node, path]: NodeEntry): boolean;