export interface CustomFieldInputProps { id: string; name: string; value: TValue; onChange: (newValue: TValue) => void; onBlur: () => void; }