import { ActionsContainerProps } from './actions-container.types';
/**
* This component is a container for actions, such as buttons, that should be displayed together.
* It ensures that spaces between these actions adhere to the design system specifications,
* providing a consistent look and feel.
*
* Additionally, it supports being used as a slot for different components, maintaining appropriate
* spacing as per the design system guidelines.
*
* ### Usage
*
* ```tsx
* import { ActionsContainer } from '@bloomreach/react-banana-ui';
*
* export default function MyCustomComponent() {
* return (
*
*
*
*
* );
* }
* ```
*/
declare const ActionsContainer: import('react').ForwardRefExoticComponent>;
export default ActionsContainer;