import React from 'react'; import { DisplayField, DisplayPanel } from '../../../../forms'; interface FieldProps { handleFieldChange: (newValue: any, fieldName?: string) => void; _field: DisplayField; object: any; parentReadonly?: boolean; formContent: (DisplayPanel | DisplayField)[]; modelName: string; } declare const Field: ({ handleFieldChange, _field, object, parentReadonly, formContent, modelName, }: FieldProps) => React.JSX.Element; export default Field;