import React from 'react'; import { ComboBox as SpectrumComboBox, type SpectrumComboBoxProps } from '@adobe/react-spectrum'; import type { NormalizedItem } from '../utils'; import { type PickerPropsT } from '../picker'; export type ComboBoxProps = PickerPropsT>; export type { MenuTriggerAction } from '@react-types/combobox'; export { SpectrumComboBox }; export declare const ComboBox: React.ForwardRefExoticComponent, "children" | "items" | "selectedKey" | "defaultSelectedKey" | "disabledKeys" | "onSelectionChange" | "defaultItems"> & { children: import("../utils").ItemOrSection | import("../utils").ItemOrSection[]; tooltip?: boolean | import("../utils").TooltipOptions; selectedKey?: import("../utils").ItemKey | null; defaultSelectedKey?: import("../utils").ItemKey; disabledKeys?: Iterable; onChange?: (key: import("../utils").ItemKey | null) => void; onOpenChange?: (isOpen: boolean) => void; onScroll?: (event: Event) => void; onSelectionChange?: (key: import("../utils").ItemKey | null) => void; } & React.RefAttributes>>; //# sourceMappingURL=ComboBox.d.ts.map