import React from 'react'; import { AnchorItem, AnchorMap } from '../type'; import './index.scss'; interface IProps { data: AnchorItem; currentAnchorId?: string; handleClick?: (id: string) => void; level?: number; isTree?: boolean; anchorMap?: AnchorMap; setAnchorMap?: (map: AnchorMap) => void; customPrefixIcon?: React.ReactNode; onlyOneLevel?: boolean; } declare const AnchorMenu: (props: IProps) => import("react/jsx-runtime").JSX.Element; export default AnchorMenu;