import { type DataTestId, type StylingProps, type WithChildren, type AriaLabelingProps } from '@dynatrace/strato-components/core'; /** * @public */ export interface MenuGroupProps extends WithChildren, AriaLabelingProps, StylingProps, DataTestId { } /** * Used to group multiple items. * @public */ export declare const Group: (props: MenuGroupProps & import("react").RefAttributes) => React.ReactElement | null;