import * as React from 'react'; import { StandardProps } from '..'; import { ListProps, ListClassKey } from '../List'; export interface MenuListProps extends StandardProps { disableListWrap?: boolean; onKeyDown?: React.ReactEventHandler>; } export type MenuListClassKey = ListClassKey; declare const MenuList: React.ComponentType; export default MenuList;