import React from 'react'; import './index.less'; export interface ActiveFieldProps { field: any; referRuleInfo: any; formDetail: any; formType?: string; onChange: (val: any) => void; } declare const ActiveField: React.FC; export default ActiveField;