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