import { ButtonProps } from '@mui/material/Button';
import { ReactNode } from 'react';
import { StackProps } from '@mui/material/Stack';
export { ActionsBar } from './ActionsBar.container';
export interface ActionsInfo {
    left?: ReadonlyArray<ButtonProps | ReactNode>;
    right?: ReadonlyArray<ButtonProps | ReactNode>;
}
export interface ActionsBarProps extends StackProps {
    actions: ReactNode | ActionsInfo;
}
