import { FormSelectProps } from './types'; import { FieldValues } from 'react-hook-form'; import { Select } from '../../components/Select'; export declare const FormSelect: ({ name, options, items, onChange: handleChange, onBlur: handleBlur, label, helperText, view, required: propsRequired, multiselect, ...rest }: FormSelectProps) => ReturnType;