/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { AnchorHTMLAttributes } from 'react'; export type TableOfContentsLinkProps = { /** The text for the link. */ label: string; } & AnchorHTMLAttributes; export declare const TableOfContentsLink: import("react").ForwardRefExoticComponent<{ /** The text for the link. */ label: string; } & AnchorHTMLAttributes & import("react").RefAttributes>;