import { ReactNode } from 'react'; type Props = { children: ReactNode; }; export default function TableOfContentsItemList({ children }: Props): import("react/jsx-runtime").JSX.Element; export {};