type MarkdownSize = 'sm' | 'md' | 'lg'; interface MarkdownPreviewProps { source?: string; /** Visual density / type scale */ size?: MarkdownSize; /** Card chrome around content */ framed?: boolean; /** Shown when source is empty */ emptyText?: string; class?: string; } declare const MarkdownPreview: import("svelte").Component; type MarkdownPreview = ReturnType; export default MarkdownPreview;