import type { FC } from 'react'; import type { SubFormData, SubFormField } from '../type'; interface ExportDataProps { /** * 是否展示组件包裹的内容 */ subFormFields?: SubFormField[]; /** * 要导出的数据 */ data?: SubFormData[]; /** * 组件标识id */ compId: string; /** * 应用ID */ appId: string; /** * 引擎能力 */ customEngineApi: any; } declare const ExportData: FC; export default ExportData;