import { OwnerStateThemeType } from '.';
declare const IconButton: () => {
    MuiIconButton: {
        styleOverrides: {
            root: ({ ownerState, theme }: OwnerStateThemeType) => {
                padding: number;
                '&:hover': {
                    color: string;
                    backgroundColor: string;
                };
            };
        };
    };
};
export default IconButton;
