import * as React from "react"; import { CheckboxOptions, CheckboxHTMLProps } from "../Checkbox/Checkbox"; import { MenuItemOptions, MenuItemHTMLProps } from "./MenuItem"; import { MenuStateReturn } from "./MenuState"; export declare type MenuItemCheckboxOptions = CheckboxOptions & MenuItemOptions & Pick & { /** * MenuItemCheckbox's name as in `menu.values`. */ name: string; }; export declare type MenuItemCheckboxHTMLProps = CheckboxHTMLProps & MenuItemHTMLProps; export declare type MenuItemCheckboxProps = MenuItemCheckboxOptions & MenuItemCheckboxHTMLProps; export declare const useMenuItemCheckbox: { (options?: MenuItemCheckboxOptions | undefined, htmlProps?: CheckboxHTMLProps | undefined, unstable_ignoreUseOptions?: boolean | undefined): CheckboxHTMLProps; unstable_propsAreEqual: (prev: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & { unstable_clickOnEnter?: boolean | undefined; unstable_clickOnSpace?: boolean | undefined; } & Pick, "state" | "setState"> & { value?: string | number | undefined; checked?: 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 & Pick & { /** * MenuItemCheckbox's name as in `menu.values`. */ name: string; } & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; } & React.InputHTMLAttributes & { value?: string | number | undefined; }, next: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & { unstable_clickOnEnter?: boolean | undefined; unstable_clickOnSpace?: boolean | undefined; } & Pick, "state" | "setState"> & { value?: string | number | undefined; checked?: 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 & Pick & { /** * MenuItemCheckbox's name as in `menu.values`. */ name: string; } & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; } & React.InputHTMLAttributes & { value?: string | number | undefined; }) => boolean; __keys: readonly any[]; __useOptions: (options: MenuItemCheckboxOptions, htmlProps: CheckboxHTMLProps) => MenuItemCheckboxOptions; }; export declare const MenuItemCheckbox: import("reakit-system/ts/createComponent").Component<"button", MenuItemCheckboxOptions>;