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 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) => import("react").ReactElement | null;