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