/// <reference types="react" />
import { IndexListProps } from "./index-list";
import IndexListAnchor from "./index-list-anchor";
interface IndexListInterface {
    (props: IndexListProps): JSX.Element;
    Anchor: typeof IndexListAnchor;
}
declare const IndexList: IndexListInterface;
export default IndexList;
