import React from 'react'; import { ComponentInterface, Record, PickOption } from '../../type'; declare class NodeInput implements ComponentInterface { name: string; id: string; sortField: string; type: string; componentConfig: ComponentInterface["componentConfig"]; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface['dataType']; options: ComponentInterface['options']; constructor(options: PickOption); renderPc: (value: unknown, record: Record) => React.JSX.Element; renderExport: (value: any, record: Record) => any; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => any; renderClient: () => null; editRender: () => null; filterConfig: () => never[]; } export default NodeInput;