import type { SlateEditor } from '@udecode/plate-common'; import type { Location, Span } from 'slate'; import type { ListsSchema } from '../types'; /** * Returns true when editor has collapsed selection and the cursor is in an empty "list-item". */ export declare function isAtEmptyListItem(editor: SlateEditor, schema: ListsSchema, at?: Location | Span | null): boolean;