import { ThemeProps, FC } from '@yamada-ui/core';
import { PopoverProps } from '@yamada-ui/popover';

interface MenuOptions {
    /**
     * If `true`, the list element will be closed when value is selected.
     *
     * @default true
     */
    closeOnSelect?: boolean;
}
interface MenuProps extends ThemeProps<"Menu">, Omit<PopoverProps, "closeOnButton" | "relatedRef">, MenuOptions {
}
/**
 * `Menu` is a component that displays a common dropdown menu.
 *
 * @see Docs https://yamada-ui.com/components/overlay/menu
 */
declare const Menu: FC<MenuProps>;

export { Menu, type MenuOptions, type MenuProps };
