import { FC } from 'react'; import './index.less'; import { DSLNodeType, DSLQuery } from '@lingxiteam/dsl'; interface SelectCompProps { /** * 动作选项,编辑器会自动带入 */ actionOptions: {}; /** * 可选择的组件名称 */ includeType: string[]; DSLCore?: DSLQuery; isMobile?: boolean; /** * 占位 */ placeholder?: string; /** * 事件变化回调 * @param e * @returns */ onChange?: (e: any) => void; /** * 值 */ value?: string; /** * 忽略选中的组件 */ ignoreCompNodes?: DSLNodeType[]; /** * 是否能选择循环容器下组件 * @default false */ enableSelectInLoop: boolean; } declare const SelectComp: FC; export default SelectComp;