import { ComponentInterface, PickOption, Record } from '../../type'; import React from 'react'; import './index.less'; declare class NodeStayDuration 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']; 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: () => never[]; } export default NodeStayDuration;