import { FC } from 'react'; import type { ButtonProps } from 'antd/es/button'; import './index.less'; import { DSLQuery } from '@lingxiteam/dsl'; interface ListGroupProps { /** * 标题前缀 * @eg 内容配置 会根据这个数据自动累加 内容配置 */ titlePrefix?: string; /** * 是否展示增加按钮 */ addButton: false | ButtonProps; /** * 配置选项数据 */ options: { key: string; type: string; label: string; description?: string; props?: Record; }[]; onChange: (v: any) => void; actionOptions: { list: any[]; }; keys: string; DSLCore?: DSLQuery; /** * 不可重复选择的字段名称 */ noRepeatSelect?: { key: string; } | false; } declare const ListGroup: FC; export default ListGroup;