import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface GroupProps extends WithChildren, StylingProps, DataTestId { } /** * A group of action items. * A horizontal / vertical divider will be rendered between grouped actions. * @public */ export declare const Group: (props: GroupProps & import("react").RefAttributes) => React.ReactElement | null;