import * as React from 'react'; import { PopoverProps, PopoverClassKey } from '../Popover'; import { TransitionDuration, TransitionHandlers } from '../internal/transition'; import { MenuListProps } from './MenuList'; import { StandardProps } from '..'; export interface MenuProps extends StandardProps< PopoverProps & Partial, MenuClassKey > { anchorEl?: HTMLElement; MenuListProps?: MenuListProps; onRequestClose?: React.EventHandler; open?: boolean; transitionDuration?: TransitionDuration; } export type MenuClassKey = | PopoverClassKey | 'root' ; declare const Menu: React.ComponentType; export default Menu;