import { FC } from 'react'; import { InputProps } from 'antd'; import { EditorInputBase } from '@lingxiteam/editor-types'; import { DataSourceItemProps } from './useTable'; interface InputEleProps extends Omit { mode: 'blur' | 'bind' | 'select'; onBindClick?: () => void; DSLCore: EditorInputBase['DSLCore']; getEditorApi: EditorInputBase['getEditorApi']; selectNodeId: string; onChange: (value: string, targetVal?: string) => void; loopContents?: string[]; dataSource?: DataSourceItemProps[]; showPopover?: boolean; showClear?: boolean; } declare const InputEle: FC; export default InputEle;