interface Props { html: string; theme?: string; } /** A basic component to render pre-rendered HTML content with a specific theme. */ declare const PreRendered: import("svelte").Component; type PreRendered = ReturnType; export default PreRendered;