import React from 'react'; import { Combobox, ComboboxProps as OriginalComboboxProps, TSelectOption } from '@cloudflare/component-listbox'; import { Base, BaseProps } from './Base'; export type ComboboxProps = Omit< BaseProps, ValueType>, 'onChange' > & { onChange?: (selectedItem: TSelectOption) => void }; export default function FormCombobox( props: ComboboxProps ) { return ( // @ts-ignore , ValueType> Component={Combobox} {...props} /> ); }