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