import * as React from 'react';
import { BaseUIComponentProps } from "../../utils/types.js";
/**
* Groups related menu items with the corresponding label.
* Renders a `
` element.
*
* Documentation: [Base UI Menu](https://base-ui.com/react/components/menu)
*/
export declare const MenuGroup: React.ForwardRefExoticComponent>;
export interface MenuGroupProps extends BaseUIComponentProps<'div', MenuGroup.State> {
/**
* The content of the component.
*/
children?: React.ReactNode;
}
export interface MenuGroupState {}
export declare namespace MenuGroup {
type Props = MenuGroupProps;
type State = MenuGroupState;
}