import { ReactElement } from 'react'; import PropTypes from 'prop-types'; import { IconButtonProps } from '@mui/material/IconButton'; declare const RefreshIconButton: { (props: RefreshIconButtonProps): JSX.Element; propTypes: { className: PropTypes.Requireable; label: PropTypes.Requireable; icon: PropTypes.Requireable; }; }; interface Props { className?: string; icon?: ReactElement; label?: string; onClick?: (e: MouseEvent) => void; } export declare type RefreshIconButtonProps = Props & IconButtonProps; export default RefreshIconButton;