import type { Carta } from './internal/carta'; interface Props { /** * The Carta instance to use. */ carta: Carta; /** * Content to render. */ value: string; /** * The theme to use, which translates to the CSS class `carta-theme__{theme}`. */ theme?: string; } declare const Markdown: import("svelte").Component; type Markdown = ReturnType; export default Markdown;