import { FC } from 'react'; import { Control, FieldValues, UseFormSetValue } from 'react-hook-form'; interface InputTypesLite { inline?: boolean; baseUrl: string; inputSize?: 'xs' | 'sm' | 'md' | 'lg'; setValue: UseFormSetValue; control: Control; fieldSpec: { defaultValue?: any; form_field_type: string; label: string; name: string; type: string; select_options?: { behavior?: 'flat' | 'object'; method?: string; option_key: string; option_label: string; url?: string; options?: { key: string | number; label: string; }[]; }; }; } declare const InputTypesForFilter: FC; export default InputTypesForFilter;