import type { SlateEditor } from '@udecode/plate-common'; import type { Element, Location, NodeEntry } from 'slate'; import { Span } from 'slate'; import type { ListsSchema } from '../types'; /** * Returns all "list-items" in a given Range. */ export declare function getListItems(editor: SlateEditor, schema: ListsSchema, at?: Location | Span | null): NodeEntry[];