import { Theme } from '@mui/material/styles';
export default function IconButton(theme: Theme): {
    MuiIconButton: {
        variants: {
            props: {
                color: string;
            };
            style: {
                '&:hover': {
                    backgroundColor: string;
                };
            };
        }[];
        styleOverrides: {
            root: {};
        };
    };
};
