import type { ComponentPropsWithRef, ElementType } from 'react';
export type AnchorLinkMenuProperties<ET extends ElementType = 'aside'> = {
    /** Tag of Component */
    tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
 * 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: {
    <ET extends ElementType = "aside">({ className, tag: Tag, ...remainingProps }: AnchorLinkMenuProperties<ET>): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default AnchorLinkMenu;
