import { FC } from 'react'; import { DSLQuery } from '@lingxiteam/dsl'; import './index.less'; import { EventInputBaseType } from '../EventInputBaseType'; interface SetSysExpressionProps extends EventInputBaseType { value: any; onChange: any; eventDataMap: any; data: any; path: any[]; todoObjectMap: any; useCtxSelectOptions: any; DSLCore: DSLQuery; globalDataSource: any[]; isMobile: boolean; i18n: any; /** * 表单控件关联关系 */ formCompRelation: Record; } declare const SetSysExpression: FC; export default SetSysExpression;