import { DefaultLink } from './defaultMenuLinks'; import { Link } from './Header'; interface MenuLinksProps { links: Array; } /** * The primary list of menu links. This ensures a consistent styling * across header variations. On the homepage, this list is displayed * horizontally on desktop. In other versions, this list is visible * when the "Menu" button is toggled and displayed as a stacked list. */ declare const MenuLinks: (props: MenuLinksProps) => import("react/jsx-runtime").JSX.Element; export default MenuLinks;