import { type Snippet } from 'svelte'; import type { ClassValue } from 'svelte/elements'; import type { RevealConfig } from 'reveal.js'; import 'reveal.js/reveal.css'; import '../styles/theme.css'; type BuiltInPlugin = 'markdown' | 'highlight' | 'math' | 'notes'; type PresentationProps = { [key: string]: any; children: Snippet; options?: RevealConfig; plugins?: Partial>; class?: ClassValue; }; declare const Embed: import("svelte").Component; type Embed = ReturnType; export default Embed;