import * as React from 'react'; import { PopoverProps, PopoverClassKey } from '../Popover'; import { MenuListProps } from './MenuList'; import { StandardProps } from '..'; import { TransitionHandlerProps, TransitionProps } from '../transitions/transition'; export interface MenuProps extends StandardProps, MenuClassKey> { anchorEl?: HTMLElement; MenuListProps?: Partial; transitionDuration?: TransitionProps['timeout'] | 'auto'; } export type MenuClassKey = PopoverClassKey | 'root'; declare const Menu: React.ComponentType; export default Menu;