import { FC } from 'react'; import { DSLQuery } from '@lingxiteam/dsl'; import './index.less'; import { EventInputBaseType } from '../EventInputBaseType'; interface ComponentStateProps extends EventInputBaseType { eventDataMap: any; onChange: (value: any) => void; visible: boolean; todoObjectMap: any; useCtxSelectOptions: any; DSLCore: DSLQuery; selectedPage: any; pageDetailsMap: any; data: any; useFunctionValue: any; businessCompDetailMap: any; forwardRef: any; globalDataSource: any[]; formCompRelation: any; eventVisible: boolean; } declare const ComponentState: FC; export default ComponentState;