import React from 'react'; import { renderMap, renderSplitMap } from './render'; type subConfigType = { name: string; key: string; workOrderComponentType: string; isShow: boolean; isEdit: boolean; isRequired: boolean; isNumber: boolean; precision: string | number; width: number; [key: string]: any; }; type SubFormProps = { value: any; onChange: (val: any) => void; subConfig: { flowStatus: Array; flowTemplateKey: Array; nodeId: string; workOrderTemplateId: string; correlationList: subConfigType[]; }; needFilterShopByPermission: boolean; tableHeader: subConfigType[]; disabled: boolean; platform: string; manual?: boolean; maxCount?: number; }; declare const SubForm: (props: SubFormProps) => React.JSX.Element; export default SubForm; export { renderMap, renderSplitMap };