import { SvelteComponentTyped } from "svelte"; import type { Class } from "utility-types"; import type { LexicalNode, EditorThemeClasses } from "lexical"; declare const __propDef: { props: { initialConfig?: { namespace?: string | undefined; nodes?: Class[] | undefined; readOnly?: boolean | undefined; theme?: EditorThemeClasses | undefined; } | undefined; }; events: { error: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type LexicalComposerProps = typeof __propDef.props; export declare type LexicalComposerEvents = typeof __propDef.events; export declare type LexicalComposerSlots = typeof __propDef.slots; export default class LexicalComposer extends SvelteComponentTyped { } export {};