import { GeneralFormFieldConfigInterface } from './general-form-field-config.interface'; import { GeneralListFieldConfigInterface } from './general-list-field-config.interface'; export interface GeneralFieldConfigInterface { filteringOptions?: string[]; label: string; name: string; hasTranslation?: boolean; readonly?: boolean; formConfig?: GeneralFormFieldConfigInterface; listConfig?: GeneralListFieldConfigInterface; }