/*
 * Copyright (C) 2007-2022 Crafter Software Corporation. All Rights Reserved.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import * as React from 'react';
import { StandardProps } from '@mui/material';
import { ContextMenuOption } from '../ContextMenu';
export type ActionsGroupPropsClassKey = 'root' | 'action' | 'more';
export interface ActionsGroupProps
  extends StandardProps<React.HTMLAttributes<HTMLDivElement>, ActionsGroupPropsClassKey> {
  max?: number;
  spacing?: 'small' | 'medium' | number;
  onActionClicked(id: string, event: React.MouseEvent<Element, MouseEvent>): void;
  actions: Array<ContextMenuOption>;
}
declare const ActionsGroup: React.ForwardRefExoticComponent<
  Omit<ActionsGroupProps, 'ref'> & React.RefAttributes<HTMLDivElement>
>;
export default ActionsGroup;
