import { MenuItemProps, MenuProps } from '@mui/material'; import React, { FC } from 'react'; import { BoxProps } from '@mui/material/Box'; export interface ICustomPopperMenuItem { content: React.ReactNode; onClick?: () => void; menuItemProp?: MenuItemProps; display?: boolean; } interface Props { anchor: React.ReactNode; items: ICustomPopperMenuItem[]; onToggle?: (open: boolean) => void; boxProps?: BoxProps; menuProps?: Omit; menuItemProps?: MenuItemProps; } declare const CustomMenuList: FC; export default CustomMenuList;