import type { ComponentPropsWithRef, ElementType } from 'react'; export type AnchorLinkMenuProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Menu of links that navigate to sections within the current page. * @docs {@link https://design.visa.com/components/anchor-link-menu/?code_library=react | See Docs} * @related anchor-link-menu-header * @vgar TODO * @wcag TODO */ declare const AnchorLinkMenu: { ({ className, tag: Tag, ...remainingProps }: AnchorLinkMenuProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default AnchorLinkMenu;