interface Props { /** The raw markdown string to render */ content: string; /** Whether to enable streaming/typing effect styling */ streaming?: boolean; /** Custom class for the container */ class?: string; } declare const MarkdownRenderer: import("svelte").Component; type MarkdownRenderer = ReturnType; export default MarkdownRenderer;