import { TFieldDataType } from '../types'; export interface Field { id: string; name: string; label: string; translateLabel?: string; dataType: TFieldDataType; displayFormat?: string; enable: number; status: number; visible: number; semantics: { conceptType: string; conceptTypeEditable: boolean; semanticType: string; }; properties?: Record; isCustomField?: boolean; levelPosition: number; aggregationType: number; description: string | null; aliasLabel: string | null; inputFunction?: boolean; value?: unknown; }