import type { InputHTMLAttributes } from 'react'; import type { FormFieldOption } from '@zod-to-form/core'; type ComboboxProps = Omit, 'list'> & { options?: FormFieldOption[]; }; /** * Unstyled native combobox using `` + ``. * Provides browser-native autocomplete from the options list. */ export declare const ComboboxFallback: import("react").MemoExoticComponent<({ options, id, ...props }: ComboboxProps) => import("react").JSX.Element>; export {}; //# sourceMappingURL=Combobox.d.ts.map