///
import { ComboboxProps as OriginalComboboxProps, TSelectOption } from '@cloudflare/component-listbox';
import { BaseProps } from './Base';
export declare type ComboboxProps = Omit, ValueType>, 'onChange'> & {
onChange?: (selectedItem: TSelectOption) => void;
};
export default function FormCombobox(props: ComboboxProps): JSX.Element;