import React, { FC } from 'react'; import { MenuProps as MuiMenuProps, SxProps } from '@mui/material'; interface MenuProps extends MuiMenuProps { sx?: SxProps; className?: string; children: React.ReactNode; } export declare const Menu: FC; export {};