import * as React from "react"; import { PopoverDisclosureOptions, PopoverDisclosureHTMLProps } from "../Popover/PopoverDisclosure"; import { MenuStateReturn } from "./MenuState"; export declare type MenuButtonOptions = PopoverDisclosureOptions & Pick, "hide" | "unstable_popoverStyles" | "unstable_arrowStyles" | "currentId" | "unstable_moves" | "move"> & Pick; export declare type MenuButtonHTMLProps = PopoverDisclosureHTMLProps; export declare type MenuButtonProps = MenuButtonOptions & MenuButtonHTMLProps; export declare const useMenuButton: { (options?: MenuButtonOptions | undefined, htmlProps?: import("..").ButtonHTMLProps | undefined, unstable_ignoreUseOptions?: boolean | undefined): import("..").ButtonHTMLProps; unstable_propsAreEqual: (prev: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & { unstable_clickOnEnter?: boolean | undefined; unstable_clickOnSpace?: boolean | undefined; } & Pick, "visible"> & Pick & Pick, "unstable_disclosureRef"> & Pick & Pick, "unstable_referenceRef"> & Pick, "hide" | "move" | "currentId" | "unstable_moves" | "unstable_popoverStyles" | "unstable_arrowStyles"> & Pick & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; } & React.ButtonHTMLAttributes, next: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & { unstable_clickOnEnter?: boolean | undefined; unstable_clickOnSpace?: boolean | undefined; } & Pick, "visible"> & Pick & Pick, "unstable_disclosureRef"> & Pick & Pick, "unstable_referenceRef"> & Pick, "hide" | "move" | "currentId" | "unstable_moves" | "unstable_popoverStyles" | "unstable_arrowStyles"> & Pick & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; } & React.ButtonHTMLAttributes) => boolean; __keys: readonly any[]; __useOptions: (options: MenuButtonOptions, htmlProps: import("..").ButtonHTMLProps) => MenuButtonOptions; }; export declare const MenuButton: import("reakit-system/ts/createComponent").Component<"button", MenuButtonOptions>;