import { AriaLabelingProps } from '../../core/types/a11y-props.js'; import { DataTestId } from '../../core/types/data-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * @public */ export interface MenuGroupProps extends WithChildren, AriaLabelingProps, StylingProps, DataTestId { } /** * Used to group multiple items. * @public */ export declare const Group: (props: MenuGroupProps & import("react").RefAttributes) => import("react").ReactElement | null;