import React from 'react'; import { type ActionListProps } from '../ActionList/ActionList'; import type { PopoverContentProps, PopoverProps } from '../Popover'; type Props = { trigger: React.ReactNode; /** Content to be passed to the callback function */ callbackContent?: any; closeOnSelect?: boolean; } & ActionListProps & PopoverContentProps & PopoverProps; declare const Menu: (props: Props) => import("react/jsx-runtime").JSX.Element; export { Menu };