import type { ComboboxOption, ComboboxGroup } from "./types.js"; type OptionItemProps = { option: ComboboxOption; isSelected: boolean; onSelect: (value: string) => void; }; export declare function OptionItem({ option, isSelected, onSelect }: OptionItemProps): import("react").JSX.Element; type OptionGroupProps = { group: ComboboxGroup; selectedValue?: string; onSelect: (value: string) => void; showLabel: boolean; }; export declare function OptionGroup({ group, selectedValue, onSelect, showLabel }: OptionGroupProps): import("react").JSX.Element; export {}; //# sourceMappingURL=optionItem.d.ts.map