import { FC } from 'react'; import { DSLQuery } from '@lingxiteam/dsl'; import './index.less'; interface AppItemsSettingModalType { tableProps?: { tableColumns?: { key: string; dataIndex: string; title: string; align: string; width: string | number; type: 'Input' | 'FileResourceSelect'; inputProps: { size: 'small'; }; }[]; tableActionCol?: ['delete']; }; handleOk: (e: any) => void; wrapRef: any; DSLCore: DSLQuery; $$reqPrefix: string; selectedComp: any; value: any[]; onChange?: (e: any) => void; getEditorApi: any; } declare const AppItemsSettingModal: FC; export default AppItemsSettingModal;