import { type LexicalEditor } from 'lexical'; /** * Export the editor content to HTML string. */ export declare function exportToHtml(editor: LexicalEditor): Promise; /** * Import HTML content into the editor, replacing current content. */ export declare function importFromHtml(editor: LexicalEditor, html: string): Promise;