import { Editor, NodeEntry, Path } from 'slate'; export declare const LIST_TYPES: readonly ["ol", "ul"]; export declare const listWrapperElement: (format: any) => { type: any; children: any[]; uid: any; }; export declare const getRootListPath: (editor: any, path: any) => any; export declare const splitSelectedList: (editor: Editor, path: Path, rootListPath: Path) => void; export declare const toggleList: (event: any, editor: any, format: any) => void; export declare const getPreviousListItemEntry: (editor: Editor, liPath: Path) => NodeEntry; export declare const handleTableInList: (editor: Editor, liPath: Path) => boolean; export declare const removeListMarker: (editor: Editor, liEntry: NodeEntry) => void; export declare const updateLiWithNewNodeChildren: (editor: any, child: any) => void; export declare const convertListItemsToParagraph: (editor: any) => void; export declare const isListActive: (editor: Editor, format: (typeof LIST_TYPES)[number]) => boolean;