import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../type"; import React from "react"; import { ExpressData } from "@kmkf-fe-packages/kmkf-utils"; declare type subConfigType = { isEdit: boolean; isRequired: boolean; isShow: boolean; key: string; name: string; workOrderComponentType: string; width: number; dataIndex: string; title: string; widget: string; settingName?: string; }; declare class OrderSubForm implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; effects: ComponentInterface["effects"]; isCombinationComponent: boolean; formField: string; canSort: boolean; expressDateInstance: InstanceType; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; sortChildField: { name: string; key: string; dataType: string; [key: string]: any; }[]; constructor(options: PickOption); getSortChildFields: () => any; renderTransformItem: (item: subConfigType, val: any) => any; getNewTableHeader: () => any; renderTabel: (list: any) => React.JSX.Element; renderPc: () => null; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => any; renderExport: () => null; renderClient: (record: Record) => React.JSX.Element | null; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "like"; type: string; id: string; name: string; filterComponentType: "Input"; }[]; } export default OrderSubForm;