import { HTMLAttributes } from 'react'; import { PolymorphicPropsWithRef } from '../../utilities/polymorphism/polymorphism.js'; export type TableOfContentsProps = HTMLAttributes & { label: string; }; export type TableOfContentsLinkComponent = (props: PolymorphicPropsWithRef) => React.ReactElement | null;