import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../type"; import React from "react"; declare class SubForm implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; templateId?: string; workOrderUniqueKey?: string; constructor(options: PickOption); 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 SubForm;