import React from "react"; export interface ListItem { id: string; text: string; url: string; target?: string; dataTestId: string; } export interface Props { id: string; title: string; ariaLabel?: string; skipLink?: { url: string; text: string; }; itemsList: ListItem[]; dataTestId: string; } export declare const TableOfContents: (props: Props) => React.JSX.Element;