export type RichTextEditorVariant = 'default' | 'minimal'; interface RichTextEditorProps { value?: string; placeholder?: string; disabled?: boolean; readonly?: boolean; minHeight?: string; maxHeight?: string; maxLength?: number; showToolbar?: boolean; showFooter?: boolean; showWordCount?: boolean; variant?: RichTextEditorVariant; autofocus?: boolean; class?: string; onchange?: (html: string) => void; onfocus?: () => void; onblur?: () => void; } declare const RichTextEditor: import("svelte").Component; type RichTextEditor = ReturnType; export default RichTextEditor;