import type { SlateEditor } from '@udecode/plate-common'; import type { Node, NodeEntry } from 'slate'; import type { ListsSchema } from '../types'; /** * Moves all "list-items" from one "list" to the end of another "list". */ export declare function moveListItemsToAnotherList(editor: SlateEditor, schema: ListsSchema, parameters: { at: NodeEntry; to: NodeEntry; }): boolean;