import type { Snippet } from 'svelte'; type $$ComponentProps = { /** Pre-highlighted source HTML (Shiki output), rendered as the source panel. */ source?: string; /** The live, rendered example. */ children: Snippet; }; declare const LiveExample: import("svelte").Component<$$ComponentProps, {}, "">; type LiveExample = ReturnType; export default LiveExample;