import * as React from 'react'; import type { BaseUIComponentProps } from "../../internals/types.mjs"; /** * A link in the menu that can be used to navigate to a different page or section. * Renders an `` element. * * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu) */ export declare const MenuLinkItem: React.ForwardRefExoticComponent & React.RefAttributes>; export interface MenuLinkItemState { /** * Whether the item is highlighted. */ highlighted: boolean; } export interface MenuLinkItemProps extends BaseUIComponentProps<'a', MenuLinkItemState, React.ComponentPropsWithRef<'a'>> { /** * Overrides the text label to use when the item is matched during keyboard text navigation. */ label?: string | undefined; /** * @ignore */ id?: string | undefined; /** * Whether to close the menu when the item is clicked. * @default false */ closeOnClick?: boolean | undefined; } export declare namespace MenuLinkItem { type State = MenuLinkItemState; type Props = MenuLinkItemProps; }