import { Control } from 'react-hook-form'; export type OptionType = { value: string | number; label: string; }; export type MultiSelectProps = { name: string; control: Control; label: string; options: OptionType[]; rules?: any; required?: boolean; error?: boolean; helperText?: string; tabIndex?: number; autoFocus?: boolean; disabled?: boolean; };