import { SvelteComponentTyped } from "svelte"; import type { InitialEditorStateType } from "@lexical/plain-text"; declare const __propDef: { props: { initialEditorState?: InitialEditorStateType | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { contenteditable: {}; placeholder: {}; }; }; export declare type LexicalRichTextPluginProps = typeof __propDef.props; export declare type LexicalRichTextPluginEvents = typeof __propDef.events; export declare type LexicalRichTextPluginSlots = typeof __propDef.slots; export default class LexicalRichTextPlugin extends SvelteComponentTyped { } export {};