///
import PropTypes from 'prop-types';
import { Record } from '../../features/core';
/**
* Action Toolbar for the Show view
*
* Internal component. If you want to add or remove actions for a Show view,
* write your own ShowActions Component. Then, in the component,
* use it in the `actions` prop to pass a custom component.
*
* @example
* import Button from '@mui/material/Button';
* import { TopToolbar, EditButton, Show } from '../../app';
*
* const PostShowActions = ({ basePath, record, resource }) => (
*
*
* // Add your custom actions here //
*
*
* );
*
* export const PostShow = (props) => (
* } {...props}>
* ...
*
* );
*/
export declare const ShowActions: {
({ className, ...rest }: ShowActionsProps): JSX.Element;
propTypes: {
basePath: PropTypes.Requireable;
className: PropTypes.Requireable;
data: PropTypes.Requireable