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