declare const MuiListItem: {
    root: {
        backgroundColor: string;
        padding: number;
        marginBottom: string;
        "&.MuiLink-root": {
            backgroundColor: string;
        };
        "&.Mui-selected": {
            "&:hover": {
                backgroundColor: string;
            };
        };
        "&.Mui-selected, &.Mui-active, &.Mui-selected.Mui-focusVisible": {
            backgroundColor: string;
            color: string;
            "&:hover": {
                backgroundColor: string;
                color: string;
            };
        };
    };
};
export default MuiListItem;
