import type { SlateEditor } from '@udecode/plate-common'; import type { NodeEntry, Path } from 'slate'; import { Element } from 'slate'; import type { ListsSchema } from '../types'; /** * Returns "list" node nested in "list-item" at a given path. * Returns null if there is no nested "list". */ export declare function getNestedList(editor: SlateEditor, schema: ListsSchema, path: Path): NodeEntry | null;