import type { MenuVariants } from "@heroui/styles"; import type { ComponentPropsWithRef } from "react"; import { Menu as MenuPrimitive } from "react-aria-components/Menu"; interface MenuRootProps extends ComponentPropsWithRef>, MenuVariants { className?: string; } declare function MenuRoot({ className, ...props }: MenuRootProps): import("react/jsx-runtime").JSX.Element; export { MenuRoot }; export type { MenuRootProps };