import { ComboboxItemAddNewProps, ComboboxItemProps } from './ComboboxTypes'; /** * ComboboxItem component for rendering individual items in the list. * * Features: * - Individual item rendering with proper accessibility * - Support for disabled state * - Custom content rendering * - Automatic tracking ID generation for analytics * * @example * * * {item.name} * {item.description} * * */ export declare const ComboboxItem: (props: ComboboxItemProps) => import("react/jsx-runtime").JSX.Element; /** * ComboboxItemAddNew component for rendering an "Add New" option. * * Features: * - "Add New" option that appears when no exact match is found * - Customizable content rendering * - Callback when selected * - Automatic tracking ID generation for analytics * * @example * addNewItem(inputValue)}> * Add "{inputValue}" as new item * */ export declare const ComboboxItemAddNew: (props: ComboboxItemAddNewProps) => import("react/jsx-runtime").JSX.Element;