import React from 'react';
import type { SxProps } from '@mui/system';
interface MenuPopoverProps {
    open: boolean;
    width?: number | 'auto';
    onClose: () => void;
    anchorEl?: any;
    sx?: SxProps;
}
export default function MenuPopover({ children, sx, width, ...other }: React.PropsWithChildren<MenuPopoverProps>): JSX.Element;
export {};
