import React from 'react'; import { ListItemProps } from './lists/ListItemViewProps'; import { PopoverProps } from './Popover'; import { StackProps } from './View/Stack'; export declare type MenuProps = PopoverProps & { items?: (ListItemProps | React.ReactNode)[]; scrollable?: StackProps['scrollable']; }; export declare const Menu: ({ items, borderRadius, maxHeight, scrollable, children, ...props }: MenuProps) => JSX.Element; //# sourceMappingURL=Menu.d.ts.map