import { SvelteComponentTyped } from "svelte"; import type { EditorState, LexicalEditor } from "lexical"; declare const __propDef: { props: { ignoreInitialChange?: boolean | undefined; ignoreSelectionChange?: boolean | undefined; value?: EditorState | undefined; }; events: { change: CustomEvent<{ editorState: EditorState; editor: LexicalEditor; }>; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type LexicalOnChangePluginProps = typeof __propDef.props; export declare type LexicalOnChangePluginEvents = typeof __propDef.events; export declare type LexicalOnChangePluginSlots = typeof __propDef.slots; export default class LexicalOnChangePlugin extends SvelteComponentTyped { } export {};