import { OwnerStateThemeType } from '.';
declare const Menu: () => {
    MuiMenu: {
        defaultProps: {
            container: () => HTMLElement | null;
        };
        styleOverrides: {
            root: ({ theme }: OwnerStateThemeType) => {
                '& .MuiMenu-list': {
                    backgroundColor: string;
                    borderRadius: number;
                    padding: string;
                };
                '& .MuiMenu-paper': {
                    boxShadow: string;
                    borderRadius: number;
                    border: string;
                };
                '& .MuiMenuItem-root': {
                    borderRadius: number;
                    margin: string;
                    padding: string;
                    transition: string;
                    ':hover': {
                        backgroundColor: string;
                        color: string;
                    };
                };
            };
        };
    };
};
export default Menu;
