import type { ComponentPropsWithRef, ElementType } from 'react'; export type NavProperties = { /** Alternate */ alternate?: boolean; /** Drawer */ drawer?: boolean; /** Orientation */ orientation?: 'horizontal' | 'vertical'; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Menu or panel at the top or next to page content that links to important pages or features. * @docs {@link https://design.visa.com/components/horizontal-navigation/?code_library=react | See Docs} * @vgar TODO * @wcag TODO * @related tab, tabs */ declare const Nav: { ({ alternate, className, drawer, orientation, tag: Tag, ...remainingProps }: NavProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Nav;