import { ComponentInterface, PickOption, ColumnConfig, Record } from '../../type'; import React from 'react'; import './index.less'; declare class NodeDeadLine implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; effects: ComponentInterface["effects"]; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface['dataType']; options: Array<{ label: string; value: string; }>; constructor(options: PickOption); renderPc: (value: unknown, record: Record) => React.JSX.Element; renderLog: () => null; getComponentValue: (r: Record) => any; renderExport: (value: any, record: any) => any; renderClient: () => null; editRender: () => null; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "eq"; type: string; id: string; name: string; filterComponentType: "MultipleSelect"; props: { mode: string; options: { label: string; value: string; }[]; }; }; } export default NodeDeadLine;