import type { KeyboardEvent } from 'react'; import { Editor } from 'slate'; declare const commands: { toggleList: (type: "unordered-list" | "ordered-list", editor: Editor) => void; checkListEnter: (editor: Editor, event: KeyboardEvent) => void; nestList: (editor: Editor) => void; unNestList: (editor: Editor) => void; }; export default commands; //# sourceMappingURL=ListCommands.d.ts.map