import type { MenuItemRoot } from "../menu-item";
import type { MenuSectionRoot } from "../menu-section";
import type { ComponentProps } from "react";
import { MenuRoot } from "./menu";
export declare const Menu: typeof MenuRoot & {
    Root: typeof MenuRoot;
    Item: (({ children, className, variant, ...props }: import("..").MenuItemRootProps) => import("react/jsx-runtime").JSX.Element) & {
        Root: ({ children, className, variant, ...props }: import("..").MenuItemRootProps) => import("react/jsx-runtime").JSX.Element;
        Indicator: ({ children, className, type, ...props }: import("..").MenuItemIndicatorProps) => import("react/jsx-runtime").JSX.Element;
        SubmenuIndicator: ({ children, className, ...props }: import("..").MenuItemSubmenuIndicatorProps) => import("react/jsx-runtime").JSX.Element | null;
    };
    ItemIndicator: ({ children, className, type, ...props }: import("..").MenuItemIndicatorProps) => import("react/jsx-runtime").JSX.Element;
    Section: ({ children, className, ...props }: import("..").MenuSectionRootProps) => import("react/jsx-runtime").JSX.Element;
};
export type Menu<T extends object = object> = {
    Props: ComponentProps<typeof MenuRoot<T>>;
    RootProps: ComponentProps<typeof MenuRoot<T>>;
    ItemProps: ComponentProps<typeof MenuItemRoot>;
    SectionProps: ComponentProps<typeof MenuSectionRoot>;
};
export { MenuRoot };
export type { MenuRootProps, MenuRootProps as MenuProps } from "./menu";
export { menuVariants } from "@heroui/styles";
export type { MenuVariants } from "@heroui/styles";
