import React from 'react'; import type { DependentFieldUpdate, Field, FieldWrapperProps, SelectOption } from '../types'; interface ExtendedFieldWrapperProps extends FieldWrapperProps { onFieldUpdate?: Record; onFieldChange?: (fieldName: string, value: any) => void; setValue?: (field: string, value: any) => void; clearErrors?: (field: string) => void; updateFieldOptions?: (field: string, options: Array) => void; updateFieldLabel?: (fieldName: string, newLabelName: string) => void; setFieldHidden?: (fieldName: string, hidden: boolean) => void; addField?: (fields: Field) => void; pendingUpdatesRef?: React.MutableRefObject>; processingDependencyRef?: React.MutableRefObject; fieldChangeRef?: React.MutableRefObject>; notifyPendingUpdate?: () => void; } declare const FieldWrapper: React.FC; export default FieldWrapper;