export default TextEditor; type TextEditor = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** A rich text editor based on Lexical. */ declare const TextEditor: import("svelte").Component<{ /** * Input value. */ value?: string | undefined; /** * Make the text input container flexible. */ flex?: boolean | undefined; /** * The `dir` attribute on the `