import { Editor, RenderBlockProps } from "slate-react"; import { Editor as CoreEditor } from "slate"; export declare const toDoListPlugin: () => { renderBlock: (props: RenderBlockProps, editor: CoreEditor, next: () => any) => any; onKeyDown: (event: KeyboardEvent, editor: CoreEditor, next: () => any) => any; commands: { addToDo: (editor: Editor | CoreEditor) => void; }; sidebarButtons: ((props: { editor: Editor; }) => JSX.Element)[]; }; //# sourceMappingURL=toDoListPlugin.d.ts.map