import * as React from 'react'; import type { BaseUIComponentProps } from "../../utils/types.js"; /** * An accessible label that is automatically associated with its parent group. * Renders a `
` element. * * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu) */ export declare const MenuGroupLabel: React.ForwardRefExoticComponent>; export interface MenuGroupLabelProps extends BaseUIComponentProps<'div', MenuGroupLabel.State> {} export interface MenuGroupLabelState {} export declare namespace MenuGroupLabel { type Props = MenuGroupLabelProps; type State = MenuGroupLabelState; }