import { MenuItemProps, PaperProps, PopperPlacementType } from "@mui/material"; import React, { FC } from "react"; import { BoxProps } from "@mui/material/Box"; export interface ICustomPopperMenuItem { content: React.ReactNode; onClick?: () => void; menuItemProp?: MenuItemProps; } interface Props { anchor: React.ReactNode; anchorProps?: BoxProps; items: ICustomPopperMenuItem[]; placement?: PopperPlacementType; paperProps?: PaperProps; onToggle?: (open: boolean) => void; menuItemProps?: MenuItemProps; } declare const CustomPopperMenu: FC; export default CustomPopperMenu;