import * as React from "react"; import { PopoverOptions, PopoverHTMLProps } from "../Popover/Popover"; import { MenuBarOptions, MenuBarHTMLProps } from "./MenuBar"; import { MenuStateReturn } from "./MenuState"; export declare type MenuOptions = Omit & Pick & MenuBarOptions; export declare type MenuHTMLProps = PopoverHTMLProps & MenuBarHTMLProps; export declare type MenuProps = MenuOptions & MenuHTMLProps; export declare const useMenu: { (options?: MenuOptions | undefined, htmlProps?: import("..").TabbableHTMLProps | undefined, unstable_ignoreUseOptions?: boolean | undefined): import("..").TabbableHTMLProps; unstable_propsAreEqual: (prev: Pick & Pick & import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & Pick, "wrap" | "orientation" | "baseId" | "currentId" | "unstable_virtual" | "groups" | "unstable_moves"> & Pick & Pick, "orientation"> & Pick & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; }, next: Pick & Pick & import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & Pick, "wrap" | "orientation" | "baseId" | "currentId" | "unstable_virtual" | "groups" | "unstable_moves"> & Pick & Pick, "orientation"> & Pick & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; }) => boolean; __keys: readonly any[]; __useOptions: (options: MenuOptions, htmlProps: import("..").TabbableHTMLProps) => MenuOptions; }; export declare const Menu: import("reakit-system/ts/createComponent").Component<"div", MenuOptions>;