import * as React from "react"; import { CompositeItemOptions, CompositeItemHTMLProps } from "../Composite/CompositeItem"; import { MenuStateReturn } from "./MenuState"; export declare type MenuItemOptions = CompositeItemOptions & Pick, "visible" | "hide" | "placement" | "unstable_popoverStyles" | "unstable_arrowStyles"> & Pick; export declare type MenuItemHTMLProps = CompositeItemHTMLProps; export declare type MenuItemProps = MenuItemOptions & MenuItemHTMLProps; export declare const useMenuItem: { (options?: MenuItemOptions | undefined, htmlProps?: import("..").TabbableHTMLProps | undefined, unstable_ignoreUseOptions?: boolean | undefined): import("..").TabbableHTMLProps; unstable_propsAreEqual: (prev: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & { unstable_clickOnEnter?: boolean | undefined; unstable_clickOnSpace?: boolean | undefined; } & Pick, "baseId" | "unstable_idCountRef"> & { id?: string | undefined; } & Pick, "orientation" | "baseId" | "unstable_virtual" | "unstable_moves" | "unstable_hasActiveWidget"> & Pick & Pick, "hide" | "visible" | "unstable_popoverStyles" | "unstable_arrowStyles" | "placement"> & Pick & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; }, next: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & { unstable_clickOnEnter?: boolean | undefined; unstable_clickOnSpace?: boolean | undefined; } & Pick, "baseId" | "unstable_idCountRef"> & { id?: string | undefined; } & Pick, "orientation" | "baseId" | "unstable_virtual" | "unstable_moves" | "unstable_hasActiveWidget"> & Pick & Pick, "hide" | "visible" | "unstable_popoverStyles" | "unstable_arrowStyles" | "placement"> & Pick & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; }) => boolean; __keys: readonly any[]; __useOptions: (options: MenuItemOptions, htmlProps: import("..").TabbableHTMLProps) => MenuItemOptions; }; export declare const MenuItem: import("reakit-system/ts/createComponent").Component<"button", MenuItemOptions>;