import type { Snippet } from 'svelte'; type Props = { children: Snippet; }; /** * A scoped style wrapper for arbitrary HTML — applies typographic and list-style defaults to descendant * `h1`–`h6`, `a`, `pre`, `ul`, `ol`, `table` produced by an external HTML source (rich-text editor, * markdown renderer, server-rendered email body). The wrapper itself is `display: contents` so layout is * unaffected. * * ### CSS Custom Properties * | Property | Description | Default | * |---|---|---| * | `--sc-kit--html-block--text-color` | Body text color | `--sc-kit--color--text--primary` | * | `--sc-kit--html-block--link-color` | Anchor color | `--sc-kit--color--accent` | * | `--sc-kit--html-block--code-font` | Monospace font for `pre` | `--sc-kit--font--mono` | */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;