1export { default as RichTextEditor } from './RichTextEditor.svelte'; 2 3export type RichTextTypes = 4 | 'paragraph' 5 | 'heading-1' 6 | 'heading-2' 7 | 'heading-3' 8 | 'blockquote' 9 | 'code' 10 | 'bullet-list' 11 | 'ordered-list';