import type { FormField } from '@adam-sv/arc'; import { FormFieldId, FormFieldValue } from '..'; import type { JSX } from 'react'; export interface IFormCustomComponentProps { field: FormField; lifecycleKey: string; updateField: (fieldName: string, value: T) => void; value: any; } export declare const handledMappings: string[]; export declare function renderField(field: FormField, getCurrentValue: (fieldId: FormFieldId) => any, updateField: (fieldId: FormFieldId, value: FormFieldValue) => void): JSX.Element;