import * as React from "react"; import { CompositeOptions, CompositeHTMLProps } from "../Composite/Composite"; import { unstable_ComboboxStateReturn } from "./ComboboxState"; export declare const unstable_useCombobox: { (options?: unstable_ComboboxOptions | undefined, htmlProps?: unstable_ComboboxHTMLProps | undefined, unstable_ignoreUseOptions?: boolean | undefined): unstable_ComboboxHTMLProps; unstable_propsAreEqual: (prev: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & Pick, "wrap" | "orientation" | "baseId" | "currentId" | "unstable_virtual" | "groups" | "unstable_moves"> & Pick & Pick, "hide" | "show" | "visible" | "inline" | "list" | "menuRole" | "minValueLength" | "currentValue" | "autoSelect" | "unstable_referenceRef"> & Pick & { /** * When enabled, user can hide the combobox popover by pressing * Esc while focusing on the combobox input. * @default true */ hideOnEsc?: boolean | undefined; } & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; } & React.InputHTMLAttributes, next: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & Pick, "wrap" | "orientation" | "baseId" | "currentId" | "unstable_virtual" | "groups" | "unstable_moves"> & Pick & Pick, "hide" | "show" | "visible" | "inline" | "list" | "menuRole" | "minValueLength" | "currentValue" | "autoSelect" | "unstable_referenceRef"> & Pick & { /** * When enabled, user can hide the combobox popover by pressing * Esc while focusing on the combobox input. * @default true */ hideOnEsc?: boolean | undefined; } & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; } & React.InputHTMLAttributes) => boolean; __keys: readonly any[]; __useOptions: (options: unstable_ComboboxOptions, htmlProps: unstable_ComboboxHTMLProps) => unstable_ComboboxOptions; }; export declare const unstable_Combobox: import("reakit-system/ts/createComponent").Component<"input", unstable_ComboboxOptions>; export declare type unstable_ComboboxOptions = CompositeOptions & Pick, "currentValue" | "menuRole" | "list" | "inline" | "autoSelect" | "visible" | "show" | "hide" | "unstable_referenceRef" | "minValueLength"> & Pick & { /** * When enabled, user can hide the combobox popover by pressing * Esc while focusing on the combobox input. * @default true */ hideOnEsc?: boolean; }; export declare type unstable_ComboboxHTMLProps = CompositeHTMLProps & React.InputHTMLAttributes; export declare type unstable_ComboboxProps = unstable_ComboboxOptions & unstable_ComboboxHTMLProps;