import type { ClassValue } from "svelte/elements"; interface LinkType { name: string; href?: string; rel?: string; active?: boolean; } interface Props { headingSelector: string; extract: (x: HTMLElement) => LinkType; divClass?: ClassValue; liClass?: ClassValue; svgClass?: ClassValue; dropdownDivClass?: ClassValue; btnClass?: ClassValue; } /** * [Go to docs](https://runes-webkit.codewithshin.com/) * ## Props * @props: headingSelector: any; * @props:extract: any; * @props:divClass: any; * @props:liClass: any; * @props:svgClass: any; * @props:btnClass: any; * @props:dropdownDivClass: any; */ declare const OnThisPage: import("svelte").Component; type OnThisPage = ReturnType; export default OnThisPage;