UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

17 lines (16 loc) 735 B
import { ElementType, ForwardedRef } from 'react'; export type AnchorLinkMenuHeaderProperties = { /** @ignore */ className?: string; /** Tag of Component */ tag?: ElementType; }; /** * Component containing the header of the anchor link menu. * @docs {@link https://design.visa.com/react/components/anchor-link-menu | See Docs} */ declare const _default: <HTMLElementType = HTMLElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & AnchorLinkMenuHeaderProperties) => import("react").ReactElement; export default _default;