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<Props, {}, "">;
type PreRendered = ReturnType<typeof PreRendered>;
export default PreRendered;
