import * as React from 'react'; import { MenuItemProps } from './MenuItem'; /** @internal */ export interface MenuItemsGroup { /** Label for the menu items group */ label?: string; /** Aria label for accessibility support */ ariaLabel?: string; /** Items of the group */ items: Array>; } /** @internal */ export interface MenuGroupProps extends Partial { /** special children prop to pass children elements */ children: React.ReactNode; } /** @internal */ export declare const MenuGroup: { ({ label, ariaLabel, children }: MenuGroupProps): import("react/jsx-runtime").JSX.Element; displayName: string; };