--- import TableOfContents from "./toc"; import type { ConfigHeading, TypeTOC } from "./types.d.ts"; export interface Props { headings?: ConfigHeading[]; types?: TypeTOC; mobile: boolean; } const { headings, types, mobile } = Astro.props; ---