import { SPEditor, TElement } from '@udecode/slate-plugins-core'; import { Location, NodeEntry } from 'slate'; /** * If at (default = selection) is in ul>li>p, return li and ul node entries. */ export declare const getListItemEntry: (editor: SPEditor, { at }?: { at?: Location | null | undefined; }) => { list: NodeEntry; listItem: NodeEntry; } | undefined; //# sourceMappingURL=getListItemEntry.d.ts.map