import { type EditorState, type LexicalEditor } from 'lexical'; type $$ComponentProps = { ignoreHistoryMergeTagChange?: boolean; ignoreSelectionChange?: boolean; onChange: (editorState: EditorState, editor: LexicalEditor, tags: Set) => void; }; declare const OnChangePlugin: import("svelte").Component<$$ComponentProps, {}, "">; type OnChangePlugin = ReturnType; export default OnChangePlugin;