import { FC } from 'react'; import { FieldValues, UseFormSetValue } from 'react-hook-form'; import { FieldProperties } from '../../types'; interface InputTypes { baseUrl: string; name: string; fieldSpec: FieldProperties; setValue: UseFormSetValue; defaultValue?: any; disabled?: boolean; asDetail?: boolean; data?: { [x: string]: any; }; } declare const InputTypes: FC; export default InputTypes;