import * as preact from 'preact'; import { MarkdownHeading } from 'astro'; interface Props { /** TOC headings (tocHeadings output) — slug/depth/text only, serializable. */ headings: MarkdownHeading[]; } declare function SectionMap({ headings }: Props): preact.JSX.Element; export { SectionMap as default };