import React from 'react'; import type { BasicTextRenderResult } from '@sinoform/types'; interface Props { /** * 子表单数据 */ data: { [name: string]: BasicTextRenderResult; }[]; /** * 宽度 */ width: number; /** * 列 */ columns: string[]; } /** * 在 docx 中展现子表单数据的组件 */ declare const SubformList: React.SFC; export default SubformList;