import type { LexicalEditor } from "lexical"; import { HeadingNode } from "@lexical/rich-text"; import { ListNode, ListItemNode } from "@lexical/list"; import { LinkNode } from "@lexical/link"; export declare function handleEditorError(error: Error, editor: LexicalEditor): void; export declare const editorNodes: (typeof HeadingNode | typeof ListNode | typeof ListItemNode | typeof LinkNode)[];