import type { EditorState, EditorSetOptions } from 'lexical'; import type { LexicalCommandLog } from './use-lexical-commands-log.svelte.js'; interface Props { editorState: EditorState; treeTypeButtonClassName?: string; timeTravelButtonClassName?: string; timeTravelPanelButtonClassName?: string; timeTravelPanelClassName?: string; timeTravelPanelSliderClassName?: string; viewClassName?: string; generateContent: (exportDOM: boolean) => Promise; setEditorState: (state: EditorState, options?: EditorSetOptions) => void; setEditorReadOnly: (isReadonly: boolean) => void; commandsLog?: LexicalCommandLog; ref?: HTMLPreElement; } declare const TreeView: import("svelte").Component; type TreeView = ReturnType; export default TreeView;