import { FormComboboxProps } from './types'; import { FieldValues } from 'react-hook-form'; import { Combobox } from '../../components/Combobox'; export declare const FormCombobox: ({ name, options, label, helperText, items, onChange: handleChange, onBlur: handleBlur, placeholder, disabled, view, required: propsRequired, multiple, ...rest }: FormComboboxProps) => ReturnType;