import * as React from 'react'; import { BaseUIComponentProps } from '../../utils/types.js'; /** * A menu item that opens a submenu. * Renders a `
` element. * * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu) */ declare const MenuSubmenuTrigger: React.ForwardRefExoticComponent>; declare namespace MenuSubmenuTrigger { interface Props extends BaseUIComponentProps<'div', State> { children?: React.ReactNode; onClick?: React.MouseEventHandler; /** * Overrides the text label to use when the item is matched during keyboard text navigation. */ label?: string; /** * @ignore */ id?: string; } interface State { /** * Whether the component should ignore user interaction. */ disabled: boolean; highlighted: boolean; /** * Whether the menu is currently open. */ open: boolean; } } export { MenuSubmenuTrigger };