import React from 'react'; import { Action } from '../../../forms'; interface JsonAction extends Action { useDefaultAction?: boolean; showToast?: boolean; postActions?: (res: any) => void; } interface CustomFieldFormProps { style?: any; model: string; modelId: number; fieldType?: string; additionalActions?: JsonAction[]; readonly?: boolean; readonlyButton?: boolean; hideButtonBackground?: boolean; hideFormBackground?: boolean; } declare const CustomFieldForm: ({ style, model, modelId, fieldType, additionalActions, readonly, readonlyButton, hideButtonBackground, hideFormBackground, }: CustomFieldFormProps) => React.JSX.Element; export default CustomFieldForm;