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