declare const MuiMenu: {
    root: {
        "&.Mui-selected, &.Mui-active, &.Mui-selected.Mui-focusVisible": {
            backgroundColor: string;
            color: string;
            "&:hover": {
                backgroundColor: string;
                color: string;
            };
        };
    };
    paper: {
        border: number;
        borderRadius: number;
        background: string;
        boxShadow: string;
        ".MuiButtonBase-root": {
            padding: string;
            "&:hover": {
                backgroundColor: string;
            };
            fontFamily: string;
            fontWeight: 400;
            fontSize: 15;
            lineHeight: "24px";
        };
        ".MuiList-root": {
            padding: string;
        };
        ".Mui-selected, .Mui-active, .Mui-selected.Mui-focusVisible": {
            backgroundColor: string;
            color: string;
            "&:hover": {
                backgroundColor: string;
                color: string;
            };
        };
    };
};
export default MuiMenu;
