import type { ForwardRefExoticComponent } from "react"; import { type IndexListProps } from "./index-list"; import IndexListAnchor from "./index-list-anchor"; export type { IndexListThemeVars } from "./index-list.shared"; interface IndexListInterface extends ForwardRefExoticComponent { (props: IndexListProps): React.ReactElement; Anchor: typeof IndexListAnchor; } declare const IndexList: IndexListInterface; export default IndexList;