import React from 'react'; import { ComponentInterface } from '@kmkf-fe-packages/services-components/src/type'; type subConfigType = { name: string; key: string; workOrderComponentType: string; isShow: boolean; isEdit: boolean; isRequired: boolean; width: number; [key: string]: any; settingName?: string; }; type SubFormProps = { value: any; onChange: (val: any) => void; tableHeader: subConfigType[]; subConfig: { correlationList: subConfigType[]; }; disabled: boolean; manual?: boolean; maxCount?: number; effects: ComponentInterface['effects']; }; declare const OrderSubForm: (props: SubFormProps) => React.JSX.Element; export default OrderSubForm;