import { FC } from 'react'; import { InputProps } from 'antd'; import '../index.less'; import { EditorInputBase } from '@lingxiteam/editor-types'; import { DataSourceItemProps } from '../useTable'; interface SelectPopoverProps { DSLCore: EditorInputBase['DSLCore']; getEditorApi: EditorInputBase['getEditorApi']; selectNodeId: string; value?: string; onChange: (val?: string) => void; isBind: boolean; inputProps: InputProps; className?: string; loopContents?: string[]; dataSource?: DataSourceItemProps[]; } declare const SelectPopover: FC; export default SelectPopover;