import { DropdownOption, DropdownProps } from '../dropdown/dropdown'; import React from 'react'; export type ComboBoxOption = DropdownOption; export type ComboBoxProps = { /** * The unique identifier for this component */ id: string; /** * The name for the combo box input field */ name?: string; /** * The placeholder value to display in the control */ placeholder?: string; } & DropdownProps & JSX.IntrinsicElements['select']; /** * A combo box helps users select an item from a large list of options. */ export declare const ComboBox: ({ placeholder, ...comboBoxProps }: ComboBoxProps) => React.ReactElement; export default ComboBox;