import type { SlateEditor } from '@udecode/plate-common'; import type { Node, NodeEntry } from 'slate'; import type { ListsSchema } from '../types'; /** * Nests (moves) given "list" in a given "list-item". */ export declare function moveListToListItem(editor: SlateEditor, schema: ListsSchema, parameters: { at: NodeEntry; to: NodeEntry; }): void;