export interface FormErrors { [key: string]: {} | undefined; } export interface FormFieldData { name: string | null; value: string | null; type?: string | null; dataType?: string | null; pattern?: string | null; conceptType?: string | null; maxLength?: number | null; minLength?: number | null; minValue?: number | null; maxValue?: number | null; accept?: string | null; file?: File | null; required?: boolean; isUnique?: boolean; }