import { FormInstance } from 'antd'; import React from 'react'; import '../../EditAttr.less'; import type { OpenPropertyDrawerFn } from '../PropertyDrawer/PropsType'; import './index.less'; import { EditPropsContextType } from '../../../preprocess/editPropsprocess/EditPropsParseBefore'; export interface EditPropsType { onChange?: (arg0: any, flag?: boolean, form?: FormInstance) => void; showDataBindPannel?: boolean; eventVisible?: boolean; showRightPanel?: boolean; onOpenPropertyDrawer: OpenPropertyDrawerFn; editPropsParseBefore?: (todoProps: any, key: string, context: EditPropsContextType) => void; } declare const EditProps: React.FC; export default EditProps;