import type { ComponentPropsWithRef, ElementType } from 'react';
export type AnchorLinkMenuHeaderProperties<ET extends ElementType = 'div'> = {
    /** Tag of Component */
    tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
 * Component containing the header of the anchor link menu.
 * @docs {@link https://design.visa.com/components/anchor-link-menu/?code_library=react | See Docs}
 */
declare const AnchorLinkMenuHeader: {
    <ET extends ElementType = "div">({ className, tag: Tag, ...remainingProps }: AnchorLinkMenuHeaderProperties<ET>): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default AnchorLinkMenuHeader;
