import type { ComponentPropsWithRef } from "react"; import { MenuSection as MenuSectionPrimitive } from "react-aria-components/Menu"; interface MenuSectionRootProps extends ComponentPropsWithRef { className?: string; } declare const MenuSectionRoot: ({ children, className, ...props }: MenuSectionRootProps) => import("react/jsx-runtime").JSX.Element; export { MenuSectionRoot }; export type { MenuSectionRootProps };