import { Editor } from 'slate'; export declare const LIST_TYPES: readonly ["ol", "ul"]; export declare const getRootListPath: (editor: any, path: any) => any; export declare const listWrapperElement: (format: any) => { type: any; children: any[]; id: any; }; export declare const changeFormatIfParentIsFragment: (editor: any, format: any, currentElement: any, currentElementPath: any) => boolean; export declare const toggleList: (event: any, editor: any, format: any) => void; export declare const setListTypeAttrs: (props: any) => {}; export declare const getTypeClassName: (type: any) => any; export declare const isListActive: (editor: Editor, format: (typeof LIST_TYPES)[number]) => boolean;