import { FormListFieldData } from 'antd/lib/form/FormList'; import { FC } from 'react'; import { DSLNodeType } from '@lingxiteam/dsl'; interface DynamicFormListProps { options: { key: string; type: string; label: string; description?: string; props?: Record; }[]; field: FormListFieldData; add: (defaultValue?: any, insertIndex?: number | undefined) => void; remove: (index: number | number[]) => void; restProps: Record; index: number; ignoreCompNodes?: DSLNodeType[]; titlePrefix?: string; } declare const DynamicFormList: FC; export default DynamicFormList;